Register User Link goes to Login Page
-
I have set things up so that non logged in users should be able to access the user registration form as you would expect.
I had the SignUp sheet plugin working fairly well when I noticed the register link on the login dialog was going to the standard WordPress register form which doesn’t have all the required fields.
After some searching I decided to use the following code in the functions.php (in a child theme) to direct the request to the correct SignUpSheet register form.
/*
add_filter( ‘register_url’, ‘custom_register_url’ );
function custom_register_url( $register_url ){
$register_url = get_permalink( $register_page_id = 17 );
return $register_url;
}
*/
This didn’t make any difference so I commented it out again as shown.Now, as a user who is not logged in when I click on the link or the menu item to the register form it goes to the standard WP login but if I actually log in on that dialog it goes to the correct Registration Form.
My Privacy Policy page is accessible when not logged in and that works correctly. I can not see any differences between the settings on these two pages. Both are set to “Settings Default” nothing else.
The register page has only one thing on it
[wppb-register]
It’s not Browser or Cache related as I have tried this on my Ipad with Safari and Chrome, Window and Linux. Refreshed Control F5, you name it.I even created a new page named “New User” and added only [wppb-register] and it does the same thing.
Any Ideas what I’m missing?
The page I need help with: [log in to see the link]
- The topic ‘Register User Link goes to Login Page’ is closed to new replies.