Is it possible to over ride the Login text on the comment form?
Also is it possible to over ride the login link to use the /my-account/ login page that comes with woocommerce? We dont like that it sends you to the wordpress login page that is branded with WordPress
Β
Is it possible to over ride the Login text on the comment form?
TheΒ "Please Login to comment" phrase can be found and changed from the Dashboard > Comments > Β Phrases > Notification admin page.
Β
Also is it possible to over ride the login link to use the /my-account/ login page that comes with woocommerce? We dont like that it sends you to the wordpress login page that is branded with WordPress
wpDiscuz usesΒ wp_login_url()
Β (/wp-includes/general-template.php) which uses a filter on its return:
return apply_filters('login_url', $login_url, $redirect);
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 $link;
}
More info:Β http://codex.wordpress.org/Plugin_API/Filter_Reference/login_url