Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Moose,
    Thank you.

    I am assuming it is added by some custom code or plugin you are using(Member types can be added by code directly too).

    Can you please visit Dashboard->Users and from the member type dropdown check which member types are available?

    Are they reflecting only registered by member types pro plugin or are they reflecting the others too?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,

    Thank you for using MediaPress.

    Please visit Dashboard->MediaPress->Settings->BuddyPress and make sure the activity integration is enabled.

    That should make it work.

    Regards
    Brajesh

    PS:- are you using a custom theme? If yes, Please do let me know. That might help if the above does not solve it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Switch to Community Builder Pro #28469
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    Thank you for using the plugin.

    I do see that the correct request is being sent.

    Do you have any visibility set for the member type(member type users will be visible in directory?) Or is there any possibility that you have some other filter on members list using custom code or restriction plugins like PMPro?

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Switch to Community Builder Pro #28457
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Recent Profile Visitors page issue #28452

    Hi Carsten,
    Thank you.
    By profile, do you mean the “members/member_name/profile/ page?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Recent Profile Visitors page issue #28450

    Hi Carsten,
    is it site/visitiros page or is it site/members/member_name/visitors page?

    The hook ‘bp_after_member_body’ fires on profile page(single user pages and not in the directory).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Filter Directory users via jQuery #28449

    Hi Mike,
    Thank you for the question.

    You should be able to achieve it fairly easily.

    May I suggest you to take a look at

    bp_filter_request()
    in the buddypress/bp-templates/bp-legacy/js/buddypress.js

    That should give you the proper idea(You need to use the current cookie etc).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Moose,
    Thank you for the question. BuddyPress does not uses the settings under reading.

    By default, BuddyPress will list 20 members on a single page. You can change that by filtering on has_members as below.

    
    
    /**
     * Limit numbers of members per page.
     */
    add_filter( 'bp_after_has_members_parse_args', function ( $args ) {
    	$args['per_page'] = 5;// only show 5 members per page.
    
    	return $args;
    } );
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    You can specify member type on the same end point as members(You already did).

    Please see the endpoint docs for details.

    https://developer.buddypress.org/bp-rest-api/reference/members/

    You can specify multiple member types too.

    Regards
    Brajesh