Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 23,251 through 23,275 (of 68,948 total)
  • Author
    Search Results
  • #153210
    Manoj H L
    Participant

    wow………………..wait!!!!!!!!!!!!

    In wordpress while signing up is_email() function is used to verify whether that email good or not……
    along with in login,php their is a function called register_new_user() in there email address is checked.

    Then in buddypress how could it check user_email is in correct format or not !!!!!!!!!!!!

    #153209
    Renato Alves
    Moderator

    I would recommend looking for a possible solution on the BBpress site as buddypress uses it now.

    bbPress

     

     

    #153207

    In reply to: BuddyPress Compatible

    @mercime
    Participant

    I would suggest changing theme instead 🙂

    #153205

    In reply to: BuddyPress Compatible

    Patryk
    Participant

    I come back to the previous version of BP, and I’ll try to catch this error 🙂
    if I fail, I will have to give up with BP ;/

    @mercime
    Participant

    @garrickbs In upcoming BuddyPress 1.7, theme compatibility is made easy in addition to other new features http://wpmu.org/7-exciting-new-features-in-buddypress-1-7/

    If you have a new installation, I suggest setting up WP 3.5.1 with download BP 1.7 beta 1 . If you want forums, download bbPress beta 2. Activate your theme and check it out.

    #153199
    shanebp
    Moderator

    There is no such function.
    There is a hook – as Paul showed you.
    Use that hook to write your own function.
    https://codex.wordpress.org/Function_Reference/do_action

    Put the function in a plugin or bp-custom.php
    https://codex.buddypress.org/developer/customizing/bp-custom-php/

    #153196

    In reply to: Theme Integration

    @mercime
    Participant

    @alanfolkard You’re in luck. In upcoming BuddyPress 1.7, theme compatibility is made easy in addition to other new features http://wpmu.org/7-exciting-new-features-in-buddypress-1-7/

    I suggest setting up a test installation with WP 3.5.1 and download BP 1.7 beta 1 . If you want forums, download bbPress beta 2. Activate your theme and check it out.

    #153194

    In reply to: BuddyPress Compatible

    @mercime
    Participant

    Change to BP Default theme, is the issue resolved? I haven’t seen that happening with the WP themes I’ve tested so far with BP 1.7 beta and trunk.

    #153193
    Manoj H L
    Participant

    I need to find the function bp_signup_email_errors to modify it….
    I searched the whole buddypress directory but i didn’t get it..

    #153191

    In reply to: BuddyPress Compatible

    Patryk
    Participant

    @mercime
    disabled all plugins and I found no database duplicates
    http://img836.imageshack.us/img836/401/92522462.png

    #153184
    Tammie Lister
    Moderator

    Unless I am mistaken iFeature 5 isn’t an out of the box theme for BuddyPress? Now, if you are using the beta BuddyPress 1.7 this won’t be an issue but if you are using anything before 1.7 (beta) then you either need to use the template pack or a BuddyPress compatible theme.

    #153177
    Renato Alves
    Moderator

    Could you provide the code you used so that I can see what was wrong?

    #153131
    Ben Hansen
    Participant

    okay i think i actually figured out my problem at least which seems to be a bug actually. Not sure if its related to this one that was also recently reported:

    https://buddypress.trac.wordpress.org/ticket/4827

    this bug is actually with 1.6.4 haven’t yet been able to test with 1.7 what happens is that if you create a site using network admin and do not set the tittle attribute it never gets added to the directory if someone could tell me if this is not related to that other bug i will attempt to make a trac ticket for it. thanks!

    #153127
    Kevin M. Schafer
    Participant

    @hnla You hit the nail on the head! I commented out the piece of CSS that you brought forward. So far I don’t see any issues, but I’ll keep my eyes open for them. This piece of code must be for the clearing of a float. Now the posts look just how BuddyPress is supposed to look: http://www.gumpolen.com/blog/category/city-desk/

    /*}

    div.post .entry{

    clear: both;

    }*/

    After I saved my changes, “Control F5” couldn’t get them to show in Chrome. I had go to command prompt and use “ipconfig/flushdns” and then my changes showed. Chrome always seems to do this. A year ago I didn’t realize this, and I would simply think that I wasn’t doing something correctly and then I would go on to something else. I wasted hours of coding time, thinking that I was doing it wrong, and here it was just that Chrome doesn’t refresh correctly. At least not on the computer I use.

    Thanks for your help!

    Kevin

    #153118
    Hugo Ashmore
    Participant

    Perhaps this extra space in my thread is a product of the BP Columns child theme that I have installed on BuddyPress

    Well test that then, drop back to bp default theme!

    I’m afraid that if people wish different styling then they need to get familiar with the code to perform that, a provided theme can only be a best fit to suit many, if you start to adjust that base theme then you risk doing something others may not like.

    fwiw it is the bp columns custom styling causing this perceived problem:

    div.post .entry {

        clear: both;

    }
    Remove that line and the post entry will align to the right of the avatar and if allowed the text will wrap, however the manner in which things have been written means this will cause other styling issues that would have to be addressed.

    #153115
    Norm
    Participant

    I’m looking into this too. I think the problem is that bbpress is adding that forum tab and not buddypress. Did you figure it out?

    Otherwise this is a good reference.
    http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item

    #153114
    dasped
    Participant

    Thanks for the responses,

    I have just disabled discussion forums in buddypress and group forums also are now working.

    The bit I don’t get from that is, you are surely supposed to have this feature enabled so that your installation allows the forums to co-exist? As the line states: ‘Site-wide and Group forums allow for focused, bulletin-board style conversations.’ Are we therefore not just simply masking a deeper routed issue, or is this normal practice? One I’ve certainly never come across before.

    I’m also failing to see public group forums within the set page /group-forums/ Instead, group forums are showing up just fine on and just below my sitewide forum page categories. (This is perhaps just another issue I should really address in another post, after a little more research) – Not send this thread off on a different tangent. Mentioned it here just in case it is a related issue.

    #153102
    Hugo Ashmore
    Participant

    I would get used to using web developer tools such as firebug if building/supporting client sites.

     

    Why are you setting a new positioning context on item-body ‘relative’ is there a reason? never set the position property unless there is a very good reason. As you have not cleared your floats in the #object-nav group item-body is unaware of the element group, as you have set a new stacking context by setting ‘pos: relative’  you effectively   mask out the object nav.

    Either contain your floats for the object nav or lose the position on #item-body ( that could have consequences if child elements need that context  for offset positioning)

    This is really a third party theme issue and a CSS-P one rather than a BP issue.

    #153101
    Chris Collins
    Participant

    Yes I have solved it.  I still had discussion forums still enabled in buddypress.  If you uncheck that option the problem with topics in bbpress group forums was gone.

    #153100
    FiGu
    Participant

    Hi @mercime! Im using Yoothemes’ AIR theme.
    I think I upgraded from BP v. 1.2.2, but not 100% sure.
    And yes, I did an upgrade of WP to 3.5.1 prior to the BP upgrade.

    This is the site: http://komut.no

    Thanks! FiGu

    #153099
    modemlooper
    Moderator

    sounds like the bbPress files are missing from BuddyPress or the bbPress plugin isn’t installed

    #153090
    cao4873
    Participant

    Usually, with this type of error it will be a misspelled function. What you’ll need to do is look at the function where it’s defined. Look at $this->, You will find that sometimes the variable has been improperly defined. Also, it may be that the programmer failed to define the method Instance Correctly. For Example, reusing Instance Methods, but failing to call on them properly. Methods are not stand alone. I would bet its one of these errors

    Joshua

    #153088
    Ben Hansen
    Participant

    @mercime thanks for the input but my problem is much more like this one then that one all the blogs are public and even as super admin i cannot see most of them. As far as i can tell there no difference between the way the ones that are visible and the ones aren’t. One of them only shows up to super admins (not even to the owner) all were created by me. according to the host:

    the only blog IDs listed in the user_blogs table are 1, 2, 3, and 9. Also in the blogmeta table, it has the name, description, and last activity timestamp for those blogs. There is some data for TheEleven and an activity timestamp for blog ID 4, but nothing else, so I believe that has something to do with it.

    so out of the 8 sites i have so far 2 are fully visible and one is sorta half visible.

    just to clarify i see them but just not on the site directory page handled by buddypress.

    :/

    #153087
    @mercime
    Participant
    #153085
    dasped
    Participant

    I’m having this exact same issue @chrchcol did you have any joy resolving the matter? 0300Hrs (Nightmare) !!

Viewing 25 results - 23,251 through 23,275 (of 68,948 total)
Skip to toolbar