Archived topic
How to rename Leave a comment to Add a comment on Archives?
5 replies · Started by Jericho on July 31, 2018
Hi GP Team,
I enabled/checked the Display comment count under Layout -> Blog -> Archives.
How can I rename the Leave a comment to Add a comment in Archives? In the single post, I already changed it since I am using the Jetpack Comments and they have an option to change it on Jetpack Settings.
Thanks!
Hi Leo,
It does work on a single post but not on Front Page, Archive Pages, and Search Results. as I mentioned, I can easily change the Leave a comment on a single post via the settings on Jetpack Comments. What I want to change is the one on Front Page, Archive Pages and Search Results since I made it visible via the option on Layout -> Blog -> Archives -> Display comment count.
Screenshot: http://prntscr.com/kdgls6
Thanks!
Hi there,
Give this a shot:
add_filter( 'gettext', 'tu_change_leave_a_comment_text', 20, 3 );
function tu_change_leave_a_comment_text( $translated_text ) {
if ( 'Leave a comment' === $translated_text ) {
$translated_text = 'Your text here';
}
return $translated_text;
}
Let me know :)
Hi Tom,
It worked!
Thanks!
You're welcome :)