Tagged Questions
1
vote
0answers
118 views
Custom Registration page - prevent redirect to wp-login.php?action=register
I already have a custom login from built with the following code:
add_action('login_redirect', 'jwh_redirect_login', 10, 3);
function jwh_redirect_login($redirect_to, $url, $user) {
$url = ...
1
vote
0answers
444 views
wp-signup.php redirected to register.php
I have worpdress 3.4 multisite subdirectory set-up. (eg: example.com\username)
I also have a buddypress installation installed as a secondary blog.(eg: example.com/community)
...
0
votes
1answer
1k views
How to redirect action=register link on the lostpassword page to a different link?
I have a specific wordpress registration page where I have a new user complete their registration form. However, if someone clicks on the "forgot password" link in the login section of my site and ...
3
votes
2answers
422 views
Redirect to custom url when registration fails?
When I want to redirect the user after successful registration, I just use "registration_redirect" filter hook. How about when registration fails, which filter hook should I use? I looked into ...
1
vote
2answers
3k views
How to redirect a sucessful registration to a page template?
Each time I register I end up in the wp-login page (back-end):
Is there any way of redirecting the users who register to a page template (front-end)?
1
vote
1answer
667 views
Can I change default registration link (without htaccess)?
I'm using url like «wp-login.php?action=register&role=patient» and «register_form» hook for add extra inputs form which depends on urls like this:
...
1
vote
3answers
781 views
Front end user creation form! How do you keep the user on the same page in event of error?
I've recently tried to add a user registration form to the front end of my site and have used the following form code (based upon http://digwp.com/2010/12/login-register-password-code discovered in an ...