web-dev-qa-db-ja.com

BuddyPressへの登録後にリダイレクト

Buddypressでは、登録の最初のステップの後、ユーザーはChange Avatarステップにリダイレクトされます。代替ページにリダイレクトする方法を見つけようとしています、例えば: http://www.mysite.com/yeah Im次のコードを使用していますが、Imは継続的にリダイレクトされますアバターページを変更します。

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');

どんな助けでも大歓迎です、

前もって感謝します。

ええ、わかります。

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);
function your_function($signup) {
   // $signup is the user id of the person who has just been added  
}
add_filter( 'bp_core_activate_account', 'your_function' );
0
Nick Budden