Registration & Login Redirect Issues
-
Hello,
After successfully registering an account, the registration page doesn’t redirect to a “Thanks for Registering” page. It just reloads the registration page and makes the form disappear.
Should I add the following code to my 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); }
Additionally, after logging in with the newly created account, I am brought to a page upon successfully logging in, but I don’t see a “Logout” or “Edit Profile” button. I would need to go to /membership-login to find those links. Is there a way to include them on my page instead of directing users to log out by going to /membership-login?
Thanks,
Frank
- The topic ‘Registration & Login Redirect Issues’ is closed to new replies.