when i press login to comment it takes me to back end to login but i have front end login. so how can i change it to custom front end login page when click login to comment link?
Hi @osmantarar,
You should put a small code in theme functions.php file. Please read this support topic and change the /login slug to whatever uses the plugin:
https://wordpress.org/support/topic/change-link-for-login-link-text/
Thanks, it was helpful
Login code for function.php
add_filter( 'login_url', 'my_login_linkchanger');
function my_login_linkchanger( $link ) {
/*whatever you need to do with the link*/
return home_url( 'Your login Url');
}
Logout code for function.php
add_filter( 'logout_url', 'my_logout_linkchanger');
function my_logout_linkchanger( $link ) {
/*whatever you need to do with the link*/
return home_url( 'Your Logout Url');
}