Archived topic
Change text on "X" thoughts on [Post Title]
3 replies · Started by Willya on July 21, 2022
Hi,
I would like to change this:
[comments number count] thoughts on [post title]
How to change it to only:
(count) comments
Regards,
Willya
Hi Willya,
You’re using a Child theme with a custom Comments template right?
If so, you can change these lines to do so: https://github.com/tomusborne/generatepress/blob/master/comments.php#:~:text=%27%251%24s%20thought%20on%20%26ldquo,ldquo%3B%252%24s%26rdquo%3B%27%2C
You can make it:
'%1$s comment',
'%1$s comments',
$comments_number,
'generatepress'
You can also use the filter shown in the link above: generate_comment_form_title
Hope this clarifies!
Hi Fernando,
As usual, you are always my hero! Thank you so much.
You’re welcome Willya!