Archived topic
How to remove comment title thoughts on?
5 replies · Started by Dhirendra on June 3, 2021
Viewing posts 1–6 of 6
How to remove the comment title that says “19 thoughts on .....”
Hi there,
try adding this PHP Snippet:
add_filter( 'generate_comments_title_output', function( $output, $comments_title ) {
return null;
}, 10, 2 );
Is there any way to remove it without adding a PHP snippet?
It requires PHP to remove it. But you can use CSS to hide it:
.comments-title {
display: none;
}
Solved. Thank You for your support.
You're welcome
This archived topic is closed to new replies.