- This topic has 3 replies, 3 voices, and was last updated 9 years, 4 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › Registration form refreshes with no success message
I’ve created a membership form using the form shortcode – http://cf24jiujitsu.co.uk/register/
When people fill out and submit the form, the page refreshes with the forms still filled in, but not message to state that the process was successful. Is this supposed to happen? Is there a page I can set the form to redirect to in order to say something like “your registration request has been received, we’ll be in touch shortly.”?
Hi, please read the following documentation in regards to the registration process.
You can use the following code to redirect a person after they submit the registration form.
You can add the following function to your theme 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);
}
Thank you! That’s worked perfectly! 🙂
thanks, I needed this too