2 Registration page

Hi guys

This is a link to my registration page

https://priceactiontracker.com/registration

And i want people to only use this registration page

However when members go to my login page https://priceactiontracker.com/wp-login.php

below the log in form there is 2 tabs: Register | Lost your password?

If you click on Register you get directed to: https://priceactiontracker.com/wp-login.php?action=register

instead of: https://priceactiontracker.com/registration

How can i fix that?

thx a lot

go to your child theme and find functions.php and add this code at the end of t and it will remove the ‘register’ link

add_filter('register','no_register_link');
function no_register_link($url){
    return '';
}

thx S2 already has an option to remove it

But i dont want to remove it i want to swap it on the log in page

https://priceactiontracker.com/registration instead of https://priceactiontracker.com/wp-login.php?action=register

thx

Try to return your registration link with the code above, instead a free string. I am not sure if it will works, but worts to try.

Or maybe just create a .httpaccess redirect…