Replies
- Ravi on August 12, 2020 at 3:40 pm in reply to: [Resolved] How to Invalidate Email with Spaces in BuddyPress During Registration #32338
Hello Tosin,
Thank you for the acknowledgement. I am glad that I could help.
Regards
Ravi - Ravi on August 12, 2020 at 3:19 pm in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32335
Hello Tosin,
Sorry for the inconvenience. It is a different error from the the previous one. I have updated the plugin. Please check
Regards
Ravi - Ravi on August 11, 2020 at 6:11 pm in reply to: [Resolved] How to Invalidate Email with Spaces in BuddyPress During Registration #32296
Hello Tosin,
Please try the following code and let me know if works or not
/** * Email login support for bp-branded-login plugin */ add_filter( 'wp_authenticate_user', function( $user ) { if ( isset( $_POST['log'] ) && ! is_email( trim( $_POST['log'] ) ) ) { return new WP_Error( 'invalid_email', __( 'Please provide a valid email' ) ); } return $user; }, 10 );
Regards
Ravi - Ravi on August 11, 2020 at 1:14 pm in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32294
Hello Tosin,
Thank you for reporting the issue. Yes, It is a bug due to undefined function call. I have fixed it please update the plugin and let me know if issue resolved or not.
Regards
Ravi - Ravi on August 11, 2020 at 6:03 am in reply to: [Resolved] Disable Admin Bar for All Users Except for Administrators code not working #32289
Hello Carsten,
Thank you for the acknowledgement.
Regards
Ravi Hello Maurice,
Thank you for posting. Local transcode uses subdirectories of ‘wp-content/uploads/mediapress’. Just put the normal permissions as of uploads directory. Try 775
Regards
Ravi- Ravi on August 10, 2020 at 5:58 pm in reply to: [Resolved] Disable Admin Bar for All Users Except for Administrators code not working #32260
Hello Carsten,
Please try the following code. If you want to hide admin bar from non administrator and do not want to give access them to dashboard.
// To hide admin bar to non administrator. add_action('after_setup_theme', function(){ if ( is_super_admin() ) { return; } show_admin_bar( false ); if ( is_admin() && ! wp_doing_ajax() ) { wp_safe_redirect( home_url() ); exit; } });
Please do let me know if it works or not.
Regards
Ravi- This reply was modified 4 years, 11 months ago by
Ravi.
- This reply was modified 4 years, 11 months ago by
- Ravi on August 10, 2020 at 5:31 pm in reply to: [Resolved] Buddypress User Badges Crashed, not installing #32258
Hello Amy,
Sorry for the inconvenience. Please post me the complete message you are getting when try to activate the plugin. Also, Which platform you are working with is it BuddyPress or BuddyBoss Plateform.
Regards
Ravi - Ravi on August 10, 2020 at 5:20 pm in reply to: [Resolved] How to Invalidate Email with Spaces in BuddyPress During Registration #32257
Hello Tosin,
Thank you for posting. Default email field on BuddyPress Registration page does not allows spaces in it. Please do let me know how you are adding email field on registration page.
Regards
Ravi - Ravi on August 10, 2020 at 4:57 pm in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32255
Hello Tosin,
Sorry for the inconvenience. I have checked and It is working fine for me. Is there any chance you have updated theme or any plugin. Some chances of causing the problem. Please try to disable plugins and switch to default theme temporarily. So that you have better information of issue causing the problem.
Regards
Ravi