Replies
Hi Rami,
Thank you.Please allow me a 2-3 days.
We are working on BuddyBoss compatibility and will be glad to add it for both of these plugins.
Regards
Brajesh- Brajesh Singh on August 5, 2020 at 11:00 pm in reply to: [Resolved] BuddyPress Moderation Tools request (Suggestion) #32122
Thank you.
- Brajesh Singh on August 5, 2020 at 10:52 pm in reply to: [Resolved] MediaPress Local Transcoder installed, ffmepg working #32120
Hi Nelson,
That’s strange. Please allow us 2 days to check this and get back to you.
Regards
Brajesh - Brajesh Singh on August 5, 2020 at 10:51 pm in reply to: [Resolved] How do I check if user profile is complete? #32118
Thank you for the reply.
I am glad you were able to solve it 🙂
Regards
Brajesh - Brajesh Singh on August 5, 2020 at 10:48 pm in reply to: [Resolved] Problem with 'Make a WordPress site Private code' #32117
I just realized that we do not need the extra code from the first post since our goal has changed.
You can restrict BuddyPress section by using the following code too
/** * Make a BuddyPress section of the site Private. * * @author sbrajesh * @global string $pagenow */ function buddydev_private_site() { // do not restrict logged in users. if ( is_user_logged_in() ) { return; } // handle Special case of BuddyPress registration/Login. if ( function_exists( 'is_buddypress' ) && is_buddypress() ) { if ( bp_is_activation_page() || bp_is_register_page() ) { return; } $redirect_url = wp_login_url( site_url( '/' ) ); // get login url. wp_safe_redirect( $redirect_url ); exit( 0 ); } } add_action( 'template_redirect', 'buddydev_private_site', 0 );Regards
Brajesh - Brajesh Singh on August 5, 2020 at 10:35 pm in reply to: [Resolved] BuddyPress Docs only shows 25 groups in drop down #32116
Hi Torben,
I am sorry for the inconvenience.Please allow us 2-3 days. We are working on a release for WordPress 5.5 and will be including this fix too.
Thank you
Brajesh - Brajesh Singh on August 5, 2020 at 10:34 pm in reply to: [Resolved] Problem with 'Make a WordPress site Private code' #32115
Hi Carsten,
Sure.
Here is the code that make sthe BuddyPress section private./** * Make a BuddyPress section of the site Private. * * @author sbrajesh * @global string $pagenow */ function buddydev_private_site() { // do not restrict logged in users. if ( is_user_logged_in() ) { return; } // first exclude the wp-login.php // register // activate. global $pagenow; // if we are here, the user is not logged in, so let us check for exclusion // we selectively exclude pages from the list. // are we on login page? if ( $pagenow == 'wp-login.php' ) { return; } // let us exclude the home page. if ( is_front_page() ) { return; } // handle Special case of BuddyPress registration/Login. if ( function_exists( 'is_buddypress' ) && is_buddypress() ) { if ( bp_is_activation_page() || bp_is_register_page() ) { return; } $redirect_url = wp_login_url( site_url( '/' ) ); // get login url. wp_safe_redirect( $redirect_url ); exit( 0 ); } } add_action( 'template_redirect', 'buddydev_private_site', 0 );Regards
Brajesh - Brajesh Singh on August 5, 2020 at 10:30 pm in reply to: Change BuddyPress Force Profile Photo plugin redirection #32113
Hi Tosin,
Thank you for letting us know.In future, I will suggest moving to BuddyPress Profile Completion as we are planning to discontinue Force Profile Photo.
Regards
Brajesh - Brajesh Singh on August 5, 2020 at 10:09 am in reply to: [Resolved] BuddyPress Message Privacy – Follow support #32106
Hi Tosin,
Thank you for reminding.
It is a bit delayed, will be available by the end of this month.
Regards
Brajesh - Brajesh Singh on August 5, 2020 at 8:28 am in reply to: [Resolved] Mediapress allowable file types not recognized on subsite #32104
Hi Stefan,
Thank you for using MediaPress.MediaPress configurations & Uploads are site specific. Do you have multiple install of MediaPress? It should not be network activated.
If you are using separate instances of MediaPress on the 2 sites, Please configure the settings on that specific site.
Please note, MediaPress does not support network activation or global settings.
Regards
Brajesh