Replies
- This reply has been marked as private.
- Brajesh Singh on July 6, 2019 at 9:53 am in reply to: [Resolved] pre-purchase questions for a plugin #23892
Hi Brian,
No issues at all. No offence taken.
I am glad the above link helped.
Regards
Brajesh - Brajesh Singh on July 6, 2019 at 9:33 am in reply to: [Resolved] pre-purchase questions for a plugin #23890
Hi Brian,
No issues.Please see this
https://www.philopress.com/products/buddyblock/
It might be useful for you as it allows blocking users.
Regards
Brajesh - Brajesh Singh on July 6, 2019 at 9:29 am in reply to: [Resolved] pre-purchase questions for a plugin #23888
Btw, If you are looking for blocking users, There is a plugin from someone else called BuddyBlock.
That should help you.
Regards
Brajesh - Brajesh Singh on July 6, 2019 at 9:26 am in reply to: [Resolved] pre-purchase questions for a plugin #23887
I am sorry but I disagree with you. I hope you understand the difference between moderation and blocking.
Moderation/report abuse is not a tool for blocking user to user. It is for reporting. As a consequence of reporting if sideadmins want to block interaction between user, that is coming in future.
The features may be useless but we have 100+ site owners happily using this currently.It all depends on your need. Since it does not match your need that does not make it useless or absurd.
Regards
Brajesh - Brajesh Singh on July 6, 2019 at 5:30 am in reply to: [Resolved] BuddyPress Ajax registration – How BuddyPress by DevBuddy Forms #23884
Hi Chis,
Glad to know that you resolved it 🙂Regards
Brajesh Hi Mocha,
You are welcome.Is there a chance that you are using any custom theme?
Regards
Brajesh- Brajesh Singh on July 6, 2019 at 5:23 am in reply to: Users able to Login without Activating Their Accounts #23882
Hi Mocha,
This is not a bug in BuddyPress. Most probably your theme(custom theme?) or some plugin is causing it. Solution is to disable plugins/change theme and check for the same to find the source.Regards
Brajesh Hi,
Thank you for using the plugin.Please disable it and use the following code(in plugins/bp-custom.php or your theme’s functions.php)
/** * Redirect user to their profile if they are not admin. * * @param string $redirect_to_calculated calculated redirect. * @param string $redirect_url_specified specified redirect. * @param WP_User $user user. * * @return string */ function bpdev_custom_redirect_to_profile( $redirect_to_calculated, $redirect_url_specified, $user ) { if ( ! $user || is_wp_error( $user ) ) { return $redirect_to_calculated; } // If the redirect is not specified, assume it to be dashboard. if ( empty( $redirect_to_calculated ) ) { $redirect_to_calculated = admin_url(); } // if the user is not site admin, redirect to his/her profile. if ( function_exists( 'bp_core_get_user_domain' ) && ! is_super_admin( $user->ID ) ) { return bp_core_get_user_domain( $user->ID ) . bp_get_activity_slug() . '/following/'; } // if site admin or not logged in, do not do anything much. return $redirect_to_calculated; } add_filter( 'login_redirect', 'bpdev_custom_redirect_to_profile', 101, 3 );Regards
Brajesh- Brajesh Singh on July 5, 2019 at 8:04 pm in reply to: BuddyBlog – How Post to different Site ID from BP #23873
Hi Jared,
Thank you for the topic. It seems, we may achieve it using switch_to_blog and restore restore_current_blog.
Please allow us to test it as a proof of concept next week and get back to you.
Thank you
Brajesh