• Hello! It is a great plugin.

    When Email Activation is enabled…

    How can I redirect to url when the submit button is sent in the registration form?

    I do not want a message to be displayed, I want it to be redirected to a specific url.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support mbrsolution

    (@mbrsolution)

    Hi, are you currently using the Form Builder addon? If you are not, have you entered a URL in the following After Registration Redirect URL field? This field is located under Advanced Settings tab.

    Regards

    • This reply was modified 5 years, 7 months ago by mbrsolution.
    Thread Starter MarketingPont.com

    (@wpsos911)

    Hello. Thank you for your answer.

    After Registration Redirect URL field, redirect when the link sent by email is clicked.

    But, I need a redirection when the submit button is pressed.

    Actually, the plugin only shows a message.

    Plugin Support mbrsolution

    (@mbrsolution)

    Hi, you still have not answered my question. Are you currently using the Form Builder addon in your site?

    Thank you

    Thread Starter MarketingPont.com

    (@wpsos911)

    Sorry, no. I’m not using the Form Builder addon in my site.

    Plugin Support mbrsolution

    (@mbrsolution)

    Hi, try the following function code. This can be added to your themes functions.php file.

    add_action('swpm_front_end_registration_complete', 'sam_after_registration_redirection');
    function sam_after_registration_redirection()
    {
    $url = 'https://www.yourwebsite.com/thank-you/';//TODO - Specify the URL that you want to redirect to
    wp_redirect($url);
    }

    Let me know how you go.

    Regards

    Thread Starter MarketingPont.com

    (@wpsos911)

    Thank you!

    Work great!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Redirection when the register submit button is sent’ is closed to new replies.