Replies
- Ravi on August 19, 2024 at 6:41 am in reply to: [Resolved] Mediapress Feature Request: Restrict storage space by user role #53035
Hello Stephanie,
Thank you for marking the issue as resolved.
Regards
Ravi - Ravi on August 16, 2024 at 8:02 am in reply to: [Resolved] Mediapress Feature Request: Restrict storage space by user role #53031
Hello Stephanie,
Thank you for posting. We have created a plugin with the name ‘MediaPress Flexible storage limit’ for such purpose. Please have a look here:
https://buddydev.com/plugins/mpp-flexible-storage-limit/
Please let me know if you need further assistance.
Regards
Ravi - Ravi on August 16, 2024 at 6:55 am in reply to: [Resolved] Secure or hide buddypress admin users using 404 error #53030
Hello Tosin,
Please try the following code:
add_action( 'bp_template_redirect', function () { if ( ! bp_is_user() || bp_is_my_profile() ) { return; } $displayed_user = get_user_by( 'id', bp_displayed_user_id() ); // this should never happen. if ( ! $displayed_user ) { return; } if ( ! in_array( 'administrator', $displayed_user->roles, ) ) { return; } // if we are on admin profile and user is not logged or the logged user is not admin do 404. if ( ! is_user_logged_in() || ! in_array( 'administrator', wp_get_current_user()->roles ) ) { //add_filter( 'bp_use_theme_compat_with_current_theme', '__return_false' ); bp_do_404(); } }, 1000 );
Please un-comment the line before bp_do_404 if your theme is not block theme and then give it a try.
Regards
Ravi - Ravi on August 16, 2024 at 6:48 am in reply to: [Resolved] Group Tabs Pro: Can’t Add Sub Nav Tabs When Adding to EXISTING Tab #53029
Hello,
Welcome to the BuddyDev forums. Yes, you can add sub tab to the tabs created using Group Tabs Creator plugin. But you can’t add sub tabs to existing tabs created by BuddyPress.
Regards
Ravi - Ravi on August 16, 2024 at 5:49 am in reply to: BuddyPress Member Types Pro as member list grid? #53028
Hello Kim,
As per your message, I am assuming you want to hide last active time of the member. If yes, Please try the following CSS rule:
.bpmtp-shortcode-members .item-meta.last-activity { display: none; }
If not please share a screenshot what you want to hide.
Regards
Ravi - Ravi on August 13, 2024 at 6:15 pm in reply to: [Resolved] Buddyblog duplicate posting prevention #53018
Hello Tosin,
Thank you, I am glad that I could help.
Regards
Ravi - Ravi on August 7, 2024 at 2:37 pm in reply to: [Resolved] Buddyblog duplicate posting prevention #52960This reply has been marked as private.
- Ravi on August 6, 2024 at 4:43 am in reply to: [Resolved] HTML and CSS in Custom Profile Tabs? #52941
Hello Scott,
Welcome to the BuddyDev forums.
Thank you for the acknowledgement. I am glad that you fix it on your own.
Regards
Ravi - Ravi on August 5, 2024 at 6:46 am in reply to: [Resolved] BuddyPress Ajax Registration Not Working Auto activate on Registration #52934
Hello Kim,
Sorry for the inconvenience. This issue has arisen with the latest BP 14 version, so we have added BP 14 compatibility to the plugin. Please upgrade your plugin to the latest version, 2.1.2, and give it a try.
Plugin url: https://buddydev.com/plugins/bp-ajax-registration/
If you need any further assistance, feel free to let me know!
Regards
Ravi- This reply was modified 3 months, 2 weeks ago by Ravi.
- Ravi on August 2, 2024 at 5:41 pm in reply to: [Resolved] BuddyPress Auto Activate Auto Login issues #52923This reply has been marked as private.