you might be able to add a filter function to functions.php of your theme, to influence the link; example:
add_filter( 'login_url', 'my_login_linkchanger'); function my_login_linkchanger( $link ) { /*whatever you need to do with the link*/ return home_url( '/my-custom-login-page/' ); }
you might be able to add a filter function to functions.php of your theme, to influence the link; example:
add_filter( 'login_url', 'my_login_linkchanger'); function my_login_linkchanger( $link ) { /*whatever you need to do with the link*/ return home_url( '/my-custom-login-page/' ); }
you might be able to add a filter function to functions.php of your theme, to influence the link; example:
add_filter( 'login_url', 'my_login_linkchanger'); function my_login_linkchanger( $link ) { /*whatever you need to do with the link*/ return home_url( '/my-custom-login-page/' ); }
Thank you very much Tom ! It works perfectly !
This worked for me as well. Thank you Tom
Problem was for not logged in user. When he press link to log in here it will lead him to WP login instead of UM form
When user is logged in already, there was no issue.