• Resolved luxegirldiaries

    (@luxegirldiaries)


    Hello,

    I want to change the link for ‘create an account’ located next to ‘Sign In’ on our login page. It keeps redirecting to the registration page of our main blog, which is currently down for maintenance. How do I change the link to redirect to a different URL?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Zainab Afaq

    (@wpzainab)

    Hi @luxegirldiaries ,

    Following snippet will change the custom registration url to WordPress default registration form.

    Paste the following piece of code in your Child theme’s functions.php

    /**
     * Filter to redirect a user to default Register form.
     *
     * @return [URL] register url with page slug on which it will be redirected after logout
    */
    add_filter( 'register_url', 'custom_register_url' );
    function custom_register_url( $register_url )
    {
        $register_url = wp_login_url( ).'?action=register';
        return $register_url;
    }

    Contact us if you need any further assistance.

    Thank you.

Viewing 1 replies (of 1 total)

The topic ‘Changing Link for ‘Create an Account’’ is closed to new replies.