Notifications
Clear all
Topic starter
02/03/2020 6:21 am
Can anyone tell me how I can change the redirect when one clicks on the word 'login' in the phrase "Please Login to comment" below the articles, by configuring it with the 'ultimate member' login page?
Now the redirect is it configured to refer the user to the wp-login.php page.
thank you
Topic starter
02/03/2020 6:29 am
Solved, i have found this code on the forum::
add_filter( 'login_url', 'my_login_linkchanger');
function my_login_linkchanger( $link ) {
/*whatever you need to do with the link*/
return home_url( '/url-login-page' );
}
Thanks!
Elvina reacted