Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
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');
}