Replies
- 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_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