Skip to:
Content
Pages
Categories
Search
Top
Bottom

Custom registration page


  • Matzze
    Participant

    @matzze

    Hi again,

    for some reasons I’d love to have my own registration page. So the first step i found in here is to remove the bp redirect to its registration page:

    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );

    but if i try to add my own page like this:

    add_filter( 'registration_redirect' , 'my_registration_redirect' );
    function my_registration_redirect() {
        return 'http://www.example.com';
    }

    It doesnt work. To be clear: I mainly mean the “register” link in wp-login.php. The first step removes the redirect – works. But the second step does not change anything, its still wp-login.php?action=register.

    Any ideas somebody?

    Thanks for helping!

  • The topic ‘Custom registration page’ is closed to new replies.
Skip to toolbar