Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the gVectors community!
Merry Christmas and Happy Holidays! 🎄
there is user gravatar on comment header , which is surprisingly big and annoying.
i can't figure it out on how to remove it. i also have buddypress integrated.
nevermind, i already figure it out , but discovered another problem.
what is the php file to edit wc-must-login.
i need to change the href for my login page.
the word is :
you must be logged in to post a comment
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
