- This topic has 4 replies, 2 voices, and was last updated 10 years, 1 month ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › No Redirect after Registration
Tagged: Registration
Hello,
https://www.napatechnology.com/membership-join/
When someone registers, it just refreshes this page…with no success message or anything…How do i redirect the REGISTRATION, so they can just go right to /selfhelp
Thank you!!!
Hi, you can add the following code to your functions.php file. It is preferably to use a child theme set up for this.
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);
}
Alternative if you are already using the Form Builder Add-on then you have the option to redirect a member after the registration is complete.
ok, i bought the form add-on…and now NOTHING WORKS!!
PLEASE HELP.
I paid $40 for this to work…not to keep going in endless loops.
I only have 1 level, and its called CURRENT CUSTOMER. I dont want free accounts.
PLEASE HELP ASAP!!!!!!
ok…it appears to be working…but can you please double check for me?
Hi, if you bought the Form Builder Add-on, did you also add the function I shared above? If you did please make sure you remove this function as it is not needed anymore because you are using the Form Builder Add-on functionality.
Is everything working correct now for you? Did you run a test yourself?