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.
Yeah I ge it: