Skip to:
Content
Pages
Categories
Search
Top
Bottom

What is the hook after user registration?

  • @rcjr24

    Participant

    Im using wordpress 3.9, buddpress version 2.0.1
    Id like to know of how could I redirect the user to my created page after registration. Is there a hook on it so that i could make redirection?

Viewing 4 replies - 1 through 4 (of 4 total)
  • @danbp

    Participant

    @rcjr24

    Participant

    @danbp
    its after login, what I want is after the registration successful, but I solve my problem in this way

    function redirect_after_registration( $user_id ) {
    	return wp_redirect( get_site_url().'/?p=504' ); exit;
    }
    add_action( 'bp_core_signup_user', 'redirect_after_registration' );

    By the way, is this correct or am I on the right code? Although its works good to my site.

    @danbp

    Participant

    Yes i think. Although its works good to my site. Than it is ok, no ?

    @rcjr24

    Participant

    huh?…. well i think it YES!…hahahhaa
    BDW! how to resolve this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘What is the hook after user registration?’ is closed to new replies.
Skip to toolbar