- This topic has 1 reply, 2 voices, and was last updated 9 years, 2 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › Free Membership registration – how do you add message of successful registration
Tagged: prompts, redirection, successful registration
Hi,
I am using Simple Membership to setup free access to my blog for registered users. Once a users registers successfully how do I bring up a message stating “Successful registration” or redirect to a thank you page?
Any advice would be greatly appreciated.
Thanks,
John
Hi John, you can add the following function to your theme function.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);
}