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 6 years, 7 months ago by
mbrsolution.
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.
Hi, you still have not answered my question. Are you currently using the Form Builder addon in your site?
Thank you
Sorry, no. I’m not using the Form Builder addon in my site.
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 = 'http://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