Replies
- 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_items
and disable it.Regards
Brajesh - Brajesh Singh on April 7, 2025 at 3:05 am in reply to: buddyblog pay per post zero price product #55269
Hi Tosin,
The current plugin allows users to purchase and processes all the purchases in same way.You will need custom code to achieve it. I lack the time to look into it currently, will be glad to assist some time in future.
Regards
Brajesh - Brajesh Singh on April 7, 2025 at 3:03 am in reply to: Image upload in activity feed with no text not showing error #55268
Hi,
Thank you for reporting the issue.Can you please check it with default WordPress theme. Is the behaving same?
Please let me know and I will assist.
Regards
Brajesh Hi Bill,
Thank you for purchasing from us. I am sorry for the experience.Our plugins are not compatible with Youzify. We will process a refund within 2-4 working days.
Regards
Brajesh- Brajesh Singh on April 7, 2025 at 3:00 am in reply to: [Resolved] Can we remove featured members automatically? #55266
Thank you Stephanie
I hope it worked.Regards
Brajesh - Brajesh Singh on April 4, 2025 at 1:16 am in reply to: creator tabs pro breaks groups link in buddyboss #55259
Hi Greg,
Thank you.I see the following issue:-
1. You have not specified tab slug. each tab must have a slug(it is a string without any space, you can use dash).
2. You have not added a sub nav. Please add a sub tab and set a slug/content for that.After that, please enable the tab (set Is Active) and It will work.
Regards
Brajesh - Brajesh Singh on April 3, 2025 at 3:28 pm in reply to: Profile Creator Tab Pro doesn’t function #55256
Hi,
Thank you for using the plugin.BuddyPress has changed the way it handles urls. You are most probably using older version of Profile Tabs Creator pro. Please make sure you are using the latest version of this plugin. The latest version if compatible with the new urls.
Regards
Brajesh