Replies
- Brajesh Singh on April 2, 2020 at 12:32 am in reply to: BuddyPress Member Types Pro – Looking for REST API end points #28472
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 - Brajesh Singh on April 2, 2020 at 12:08 am in reply to: [Resolved] Memberpress install – Lacking Activity upload Icons #28470
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
BrajeshPS:- are you using a custom theme? If yes, Please do let me know. That might help if the above does not solve it.
- This reply has been marked as private.
- Brajesh Singh on April 1, 2020 at 11:32 pm in reply to: [Resolved] BuddyPress Member Types Pro: Member Filter didn't work #28468
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 - This reply has been marked as private.
Hi Carsten,
Thank you.
By profile, do you mean the “members/member_name/profile/ page?Regards
BrajeshHi 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- Brajesh Singh on April 1, 2020 at 12:00 pm 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.jsThat should give you the proper idea(You need to use the current cookie etc).
Regards
Brajesh - Brajesh Singh on April 1, 2020 at 11:56 am in reply to: [Resolved] BuddyPress Member Types Pro : Need help with Pagination #28448
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 - Brajesh Singh on April 1, 2020 at 11:51 am in reply to: BuddyPress Member Types Pro – Looking for REST API end points #28447
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