Archived topic
Modify Comment Title
3 replies · Started by Russ on August 23, 2021
I am using GP Pro 2.0.3. I like that posts w/o comments show "Leave a comment". Posts with comments simply show "n Comments". I wonder if I could change "n Comments" to "n Comments already, Click here to leave another"
I apologize if this has already been covered, but I did look around and could not find an approach.
Thank you
Hi Russ,
Perhaps this filter is what you need.
https://docs.generatepress.com/article/generate_leave_comment/
Or filter the text domain. (for post meta)
Example:
add_filter( 'gettext', function( $text ) {
if ( '1 Comment' === $text ) {
return '1';
} if ( '% Comments' === $text ) {
return '%';
}
return $text;
} );
Here's how to add PHP snippets - https://docs.generatepress.com/article/adding-php/
Perfect! Exactly what I wanted.
Thank you,
Russ
Nice one. No problem. Glad to be of any help. :D