Replies
- Brajesh Singh on April 22, 2025 at 7:41 pm in reply to: Mediapress cover photo upload not saving #55294
Hi Kim,
Thank you for your patience.I have tested it with BuddyX not BuddyX Pro. The plugin and all features of MediaPress is working if you have BP Classic plugin installed.
I tested cover update from Profile->Your Galleries->Gallery Name-> Edit Details and then clicking on “Upload New Cover”. It is working for me using BuddyX and latest version of MediaPress(1.5.9.1).
Can you please help me with the workflow to recreate it.
PS:- I only have BuddyPress, BP Classic and MediaPress active while testing this.
Regards
Brajesh - 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