Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,001 through 8,025 (of 69,109 total)
  • Author
    Search Results
  • #266613
    slimmyweight
    Participant

    Isn’t there code somewhere I can just copy and paste as I tried using parts from the above forum post:

    I copy and pasted.
    https://buddypress.org/support/topic/hide-admin-from-members-and-activity/
    If not I guess I won’t be able to fix it without knowing how to code?

    #266608
    Henry Wright
    Moderator

    I recommend using the bp_after_has_activities_parse_args filter to modify the activity stream (remove admin items). Check out this helpful article:

    Using bp_parse_args() to filter BuddyPress template loops

    #266607
    Henry Wright
    Moderator

    Can Buddypress accomplish this? If so, would it be a complicated and labour intensive process to implement?

    WordPress and BuddyPress should be able to handle this. The 2 levels of members you speak of could be either BuddyPress member types, or WordPress roles.

    However, there is one tricky part. People need to be able to search for each event type, and also whether the event is hosted by either a “Facilitator,” or a “Host.”

    This part is easy to solve. You would save either “facilitator” or “host” against the event’s meta when the event is created or updated. Then when you build your custom search, you can use the pre_get_posts hook to output matched posts, using both the search and meta query parameters in WP_Query.

    #266600

    In reply to: NetForum Pro

    shanebp
    Moderator

    I doubt if you’ll find somebody on these forums who knows if BuddyPress works with NetForum Pro.

    >Can we limit what groups they are part of?
    Probably, but you’ll need good knowledge of how BP Groups work in order to write the custom code required.

    #266593
    pimous
    Participant

    Hello,
    Is it possible to send documents through buddypress messaging (attachments) has members?
    thank you for your reply

    #266580
    freeace00
    Participant

    I am leaving the answer I found the solution for next person who has the same issue. https://codex.buddypress.org/themes/buddypress-cover-images/#about-buddypress-css-overrides

    Solved!

    Thank you all,

    #266574
    paulio
    Participant

    Hi Brajesh

    Sorry, when I said ‘only the Login or Logout menu items show’ I thought it would be apparent that I meant that the Register link doesn’t appear on the menu whether I’m logged out or in.

    So, to be clear, I have added ‘Login’ and ‘Register’ to the default menu from the ‘Logged out’ Buddypress section, and ‘Logout’ to the default menu from the ‘Logged in’ Buddypress section.

    When I am logged in ‘Logout’ shows in the menu.

    When I am logged out ‘Register’ does not appear in the menu, only ‘Login’ does.
    As they were both added to the same menu from the same section of the ‘Add to menu’ options this can’t be expected behaviour surely.

    Many thanks

    #266571
    macordu
    Participant

    Hi, thanks for your answer. The repository you point was actually my starting point. I know it is far for complete 🙂

    I want to filter the response depending on who is doing the call, and for that I need the authentication. I understood it should the be done the same way as in WP Rest API. I just thought that when WP got the logged in user id via the oauth process, Buddypress would get it also (the same way that when you log in through the web page). But it does not. So I was just wondering if anybody has a clue on where or what to do about this.

    #266566
    livingflame
    Participant

    // Restrict Private Message to friends.

    Does not work with the new BuddyPress. ;-/

    #266563
    Eric
    Participant

    hi there,
    may i ask someone to help me with a mod of this script?

    i would need to autojoin my users who register a site/blog on my buddypress multisite install to a specific group (group for bloggers).

    how can i filter the script to only autojoin them?

    thanks a lot for your help!
    br, eric

    #266556
    TAC28
    Participant

    Thanks for the response, where do I find custom work for BuddyPress? 🙂

    Renato Alves
    Moderator

    BuddyPress has a API that you can use: https://codex.buddypress.org/component/private-messages/

    You can hook at the WooCommerce actions when sending the emails and send your private messages.

    Hope that helps! 🙂

    #266552
    Renato Alves
    Moderator

    The BP REST API does not have support for users yet. My guess is that the version you are using if imcomplete, missing support for several components.

    Check the work here for more updates: https://github.com/buddypress/BP-REST

    #266539

    In reply to: User Database

    Henry Wright
    Moderator

    And here’s the BP database diagram

    BuddyPress Database Diagram

    #266532

    In reply to: link broken?

    rnelson333
    Participant

    Never received any “support”. So deleted Buddypress, will try another option.

    rageshr007
    Participant

    problem solved. After some more research I found out that the problem was with my php memory limit. I initially tried to simply change the memory limit by adding define (‘WP_MEMORY_LIMIT’,’128M’); to wp-config.

    This thread helped me ..thanks
    https://buddypress.org/support/topic/resolved-admin-white-screen-upon-buddypress-activation/

    kodacollider
    Participant

    I had to disable activity update comments from displaying as their own items entirely to fix this, but it looks like doing so did. I used the code from this thread.

    function my_bp_activities_include_activity_types( $retval ) {
    // only allow the following activity types to be shown
        $retval['action'] = array(
         //   'activity_update',
            'activity_comment',
            'new_blog_post',
            'new_blog_comment',
            'friendship_created',
            'created_group',
        );
     
        return $retval;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activities_include_activity_types' );

    Weird issue all around.

    #266477
    n0madpl
    Participant

    Hey,

    The fix for that is coming in the next release of buddy press. Or at least for the part of the problem.

    You most likely get 50% of your problem from these two in my case with 6k users these amounted to the respective query execution times (from new relic), I also run buddypress + rtmedia (which is the source of this problem) as described in this ticket:

    bp_friends_prime_mentions_results() – Used by the Activity component’s @mentions to print a JSON list of the current user’s friends.

    bp_friends_prime_mentions_results – 10,000+ ms
    bp_core_fetch_avatar – 6,000+ ms

    Here’s a fix:
    https://buddypress.trac.wordpress.org/changeset/11561

    You’ll still likely stay with this massive query even for logged out users:
    WP_User_Query::query on average right now it’s at around 7,500ms.

    Good news is that with HHVM site runs much faster due to object caching straight after enabling it.

    I’ve also played around with various hosts, flywheel & wpengine sucked. What works well is Kinsta with HHVM enabled, they can also check your database and help you move to InnoDB if you’re using another one.

    Anyway man hope this helps.

    Best,

    M.

    #266474

    In reply to: PROFILE HELP

    Henry Wright
    Moderator

    How many profiles am I able to make with buddypress on my website, enough for a school community ?

    This should be fine. BuddyPress can handle a huge number of profiles quite easily. Note though, your server hardware will need to be good if there’s lots of site activity.

    Is it possible to create PREMADE accounts for all these people (students) ?

    Yes but you will need to custom code this.

    When people post on the main stream, is it possible for them to post anonymously BUT still logged into their accounts ? Just like ask.fm if anyone remembers that.

    Not by default. Each activity item is associated with a member. That said, what is displayed on the front end is entirely up to you (or more specifically, entirely up to your theme author).

    #266464
    r-a-y
    Keymaster

    The problem is the Activity component only allows certain elements to be shown in the activity stream.

    By default, <ol> and <li> are not among those whitelisted elements.

    You can override this behavior with the following code snippet in your theme’s functions.php file or via wp-content/plugins/bp-custom.php:

    
    // Allow list-item element through
    add_filter( 'bp_activity_allowed_tags', function( $retval ) {
    	$retval['ul'] = $retval['ol'] = $retval['li'] = array();
    	return $retval;
    } );
    

    I’ve also opened a ticket about this here:
    https://buddypress.trac.wordpress.org/ticket/7538

    zabre00
    Participant

    I started absolutely New Site. Everything updated. Only plugins activated is BP amd Mega Main Menu ( commercial Plugin) , Mega Main men. I am getting this error”

    Notice: bp_nav was called incorrectly. These globals should not be used directly and are deprecated. Please use the BuddyPress nav functions instead. Please see
    Debugging in WordPress
    for more information. (This message was added in version 2.6.0.) in /var/www/vhosts/mysite.com/httpdocs/testsite/wp-includes/functions.php on line 4139 ”

    testsite

    Im using Twenty Twelve. Current BP amd MMM. My Question is. Is this Mega Main menu error or a Buddypress error? So, I know where to get some help! Thanks in advance.

    wci
    Participant

    Dear support team,

    I stated my helping request to bbpress support with this thread “bbpress search is not working when buddypress is activated“, BUT they state “looks like a buddypress issue – suggest you post on their forum”.

    So please advice and help to solve my issue a.s.a.p.

    BR, Alex

    n0madpl
    Participant

    Hey,

    I’m experiencing a similar issue with 6k members, I can’t imagine the size of requests at 30k+…

    It seems like mine was triggered by use of RTmedia, cause is described in this ticket, together with a patch:
    https://buddypress.trac.wordpress.org/ticket/7530

    If you’re using their plugin/s this could have been a cause.

    Btw cool site 🙂 and congrats on the user count.

    #266445

    In reply to: Remove RSS feed

    shanebp
    Moderator
    #266433
    Henry Wright
    Moderator

    I wouldn’t recommend changing core files because when you update BuddyPress, you’ll lose all of your modifications.

Viewing 25 results - 8,001 through 8,025 (of 69,109 total)
Skip to toolbar