badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: How to remove “No comment “ from appearing in search results

#78736

Hi John,

We will update this into next version update till then follow the instruction below which disable the no-comment links if there is 0 comment:

Just go to theme directory > template-parts > content.php on line no: 64 and in content-search.php on line no: 45 you will find below line of code:

<?php if ( comments_open() ) { ?>

just replace above mentioned code to the below one.

<?php if ( comments_open() && get_comments_number() ) { ?>

Thank you!