Hi, @chipegoh
LoginPress works on the WordPress default login page i.e: https://metromission.church/wp-login.php Here I see that you turned off the default registration form and created custom register page.
When I go to https://metromission.church/wp-login.php?action=register it redirects me to custom page https://metromission.church/register/.
If you want to use a custom registration page, please change the registration page link from the footer.
Add the following PHP snippet into child theme’s functions.php
add_filter( 'register_url', 'change_my_register_url' );
function change_my_register_url( $url ) {
if( is_admin() ) {
return $url;
}
return "/register/";
}
Thank you.
Здравствуйте, такая же ошибка, сайт с нуля, ссылка Регистрация не работает
Sorry for the delayed response. Thank you that solved my problem.
@chipegoh Good to know that your problem is solved.
@goodboyz Please explain your problem with bit detail, also create a new support ticket for that.
Thank you.
HI, I have the same problem than Chipegoh, i.e the footer “subscribe” in the LoginPress login page redirects on the same login page. The link is :
wp-login.php?redirect_to=”identify”
In my case I do not have a custom login page. I just would like the subscribe link to go to :
wp-login.php?action=register
instead.
Thank you !
Sorry I have found the issue: I use WP User Frontend which has a setting which overrides the subscribe redirection. I unchecked the option and it works fine !
Thanks
Hey, @macbree
Good to know that you’ve resolved the issue.
Please create a new ticket for any further queries.
Thank you.