BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Princy,

    Thank you for the acknowledgment. I am glad that the issue is resolved.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Logout and redirect to Register #42146

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Logout and redirect to Register #42143

    Hello Jimmy,

    Thank you for the acknowledgment. I will check and will update you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Group Tabs Creator Pro #42084

    Hello Reece,

    Please check the following resource for modifying existing group tabs

    https://buddydev.com/docs/buddypress-group-tabs-creator-pro/modifying-label-repositioning-existing-group-tab/

    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
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Logout and redirect to Register #42083

    Hello 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on 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