June 22, 2020 at 8:41 am
#78736
Theme Horse Support Team
Keymaster
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!