• Resolved richardzed

    (@richardzed)


    Hi there,

    I would need to redirect the users to a specific page when they click the register button and complete the form. I have tried every code in the forum but don’t work.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Mirza Hamza

    (@hamza1010)

    Hello @richardzed,

    Thanks for contacting us,

    Hope you are doing well, We’ve informed our technical team about your issue, and they will work on it promptly. When we receive their response, we will get back to you. Our team is here to assist you. Thank you for your patience.

    Thanks & Regards
    WP Experts Support Team

    Plugin Support Mirza Hamza

    (@hamza1010)

    Hello @richardzed,

    You can use this code to redirect the user to any page after registration.

    Here is the code:

    // NUA redirect after user registration
    //Note: please replace the sample page link example with any page you want at line #8
    add_filter( 'woocommerce_registration_auth_new_customer', '__return_true' );
    
    add_filter( 'woocommerce_registration_redirect', function( $var ) {
    if ( !empty( $var ) ) 
    	wp_logout();
    	$redirect_page_link = esc_url('https://tovagliatofacile.it/sample-page/'); // replace this sample page link with any page you want
    	return $redirect_page_link;
    });
    
    
    

    If you have any questions, feel free to reach out. We’re here to assist you.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘redirect after registration’ is closed to new replies.