Replies
- Brajesh Singh on April 19, 2025 at 5:03 pm in reply to: Buddypress Featured Members creates conflict with BuddyPress Member Type #55291
Hi Stephanie,
Thank you for the reply.The featured members plugin is not aware of the expirable addon and it seems thee expirable addon did not clear the counts, we will need to update that.
About the code:- These are part of the plugin. I linked to plugin’s repository. You do not need to do anything as it is already included in the plugin.
Regards
Brajesh Hi Tosin,
I am sorry but I do not understand this partI have a custom taxonomy called content_type where by (Sponsored Posts) is a taxonomy option, now ive hidden/excluded this (Sponsored Posts) taxonomy option in the buddyblog settings but im using this code below to auto assign the (Sponsored Posts) taxonomy when a post has been paid for on checkout.
Please help me understand it clearly(which post type, terms, taxonomies are relevant, are you attaching multiple taxonomy terms with the post?)
Thank you
Brajesh- Brajesh Singh on April 19, 2025 at 4:55 pm in reply to: Mediapress cover photo upload not saving #55289
Hi Kim,
Thank you. I am looking into it. Please expect an update by Monday.Regards
Brajesh Hi Jesse,
Welcome to BuddyDev support forums. Can you please share me the name of the theme? Also, You can simply paste a link in your postbox to embed it. BuddyPress supports embedding links directly, you do not need MediaPress for it.Thank you
Brajesh- Brajesh Singh on April 17, 2025 at 10:22 am in reply to: Mediapress cover photo upload not saving #55283
Hi Kim,
Thank you for using the plugins.– Is it happening when using in combination with Paid Memberships Pro storage limit plugin?
– Which theme and template pack are you using?
– Is it happening for user/sitewide or groups gallery(which one did you test)Please let me know the details and I will assist.
Regards
Brajesh - Brajesh Singh on April 15, 2025 at 2:29 pm in reply to: [Resolved] Private Message Rate Limiter & Verified Member #55281
You are welcome. I am glad it helped.
- Brajesh Singh on April 14, 2025 at 5:28 pm in reply to: [Resolved] Can we remove featured members automatically? #55278
Thank you Stephanie.
- Brajesh Singh on April 14, 2025 at 5:28 pm in reply to: [Resolved] Private Message Rate Limiter & Verified Member #55277
Hi Mary,
Thank you for using the plugin.
I am sorry for the delayed reply.1. Please upgrade to 1.1.4 and then ad the following code to your child theme’s functions.php or wp-content/plugins/bp-custom.php
/** * Disables private message rate limiter for verified members */ add_filter( 'bp_private_message_rate_limiter_can_send', function ( $can, $user_id ) { global $bp_verified_member; if ( ! $bp_verified_member || ! is_callable( array( $bp_verified_member, 'is_user_verified' ) ) ) { return $can; } if ( $bp_verified_member->is_user_verified( $user_id ) ) { $can = true; } return $can; }, 10, 2 );Regards
Brajesh - Brajesh Singh on April 14, 2025 at 4:47 pm in reply to: Buddypress Featured Members creates conflict with BuddyPress Member Type #55276
Hi Stephanie,
Thank you for reporting the isssue.I am sorry, It is not caused by Featured Members.
Here is the code we are using to add members directory tab
and here is the implementation
I am not sure why the count is not being synced on the site. Is there a possibility that 4 members were featured earlier but were set to non featured by some other means?
Regards
Brajesh - Brajesh Singh on April 14, 2025 at 4:41 pm in reply to: How to limit the activity stream in total? #55275
Hi Josh,
You are right. The max does not work. Load more is still shown. The only way around it would be to filter onbp_activity_has_more_itemsand disable it.Regards
Brajesh