Redirect after registration in BuddyPress [closed]

In Buddypress, after Registration first step, users are redirected to Change Avatar step. Im trying to find a way to redirect to an alternate page, for example: http://www.mysite.com/yeah Im using the following code, but Im continuously redirected to Change Avatar page.

function custom_filter_bp_signup() {

    global $current_site;

    return 'http://' . $current_site->domain . $current_site->path . 'yeah';

} 

add_filter('wp_signup_location', 'custom_filter_bp_signup');

Any help is welcome,

Thanks in advance.

2 Answers
2

Yeah I ge it:

function bp_redirect($user) {

    $redirect_url="http://www.mysite.com/yeah";

    bp_core_redirect($redirect_url);

}

add_action('bp_core_signup_user', 'bp_redirect', 100, 1);

Leave a Comment