Replies
- Ravi on December 20, 2021 at 11:29 am in reply to: [Resolved] Verified Badge Hidden for Activity Streams due to Theme Issues #42154
Hello Princy,
Thank you for the acknowledgment. I am glad that the issue is resolved.
Regards
Ravi - Ravi on December 20, 2021 at 7:08 am in reply to: [Resolved] Verified Badge Hidden for Activity Streams due to Theme Issues #42147
Hello Princy,
I have checked and found that the Metafans developer manually added activity action. Please look at
metafans > inc > compatibility > buddypress > inc > activity.php on line no. 409
replace
$action = $activity[0]->action;
with
$action = bp_activity_action();
It will work. Please contact the theme author to fix this.
Regards
Ravi Hello Jimmy,
Please look at the following blog to make the site private.
https://buddydev.com/making-a-wordpress-buddypress-site-private-the-right-way/
Please let me know if it helps or not.
Regards
Ravi- Ravi on December 20, 2021 at 4:51 am in reply to: [Resolved] Verified Badge Hidden for Activity Streams due to Theme Issues #42144
Hello Princy,
Thank you for posting. Which plugin you are using for verified badge let me know I will check and will update you.
Regards
Ravi Hello Jimmy,
Thank you for the acknowledgment. I will check and will update you.
Regards
Ravi- Ravi on December 20, 2021 at 4:41 am in reply to: [Resolved] Default Group Tab: Only Lists One Word #42142
Hello,
Thank you for the acknowledgment. I am glad that the issue is resolved.
Regards
Ravi - Ravi on December 16, 2021 at 11:35 am in reply to: [Resolved] Default Group Tab: Only Lists One Word #42087
Hello,
Please upgrade your plugin and check if it working or not.
Regards
Ravi Hello Reece,
Please check the following resource for modifying existing group tabs
Let me know if it helps or not. While modifying privacy make sure the tab is not the default tab for the group in this case you will get a page not found error.
PS: ‘BuddyPress Group Tabs Creator Pro’ plugin is required for this
Regards
RaviHello Jimmy,
Please remove all previous code and use the following code:
/** * Redirect user on logout. * * @param string $logout_url logout url. * @param string $redirect where to redirect. * * @return string */ function buddydev_custom_logout_url( $logout_url, $redirect ) { if ( ! function_exists( 'buddypress' ) ) { return $logout_url; } $redirect = bp_get_signup_page(); $args = array( 'action' => 'logout' ); $args['redirect_to'] = $redirect; $logout_url = add_query_arg( $args, site_url( 'wp-login.php', 'login' ) ); $logout_url = wp_nonce_url( $logout_url, 'log-out' ); return $logout_url; } add_filter( 'logout_url', 'buddydev_custom_logout_url', 100, 2 ); /** * Modify custom login redirect url * * @param string $login_url Login url. * * @return string */ function buddydev_custom_login_url( $login_url ) { if ( ! function_exists( 'buddypress' ) ) { return $login_url; } $login_url = remove_query_arg( 'redirect_to', $login_url ); $new_redirect_url = trailingslashit( bp_get_members_directory_permalink() . 'me' ); $login_url = add_query_arg( 'redirect_to', $new_redirect_url, $login_url ); return $login_url; } add_filter( 'login_url', 'buddydev_custom_login_url' );
Regards
Ravi- Ravi on December 15, 2021 at 9:16 am in reply to: [Resolved] Conflict of BP Moderation Tools with Theme #42075
Hello Princy,
Thank you for the acknowledgment. I am glad that the issue is resolved.
Regards
Ravi