Action links link to wrong pages
-
Hi
For some reason the action links that appear the bottom of say login or register page are pointing to the wrong URLs. I managed to change the register link on the login page by adding the following to my functions.php file. But how can I fix all of them?
function tml_action_url( $url, $action, $instance ) { if ( 'register' == $action ) $url = '/register/'; return $url; } add_filter( 'tml_action_url', 'tml_action_url', 10, 3 );
I’m using all standard login & registration etc pages.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Action links link to wrong pages’ is closed to new replies.