The following snippet will disable the default Thesis comments link, if the post doesn’t have any comments yet.
function thesify_disable_comments_link( $link )
{
if( get_comments_number() == 0 )
return '';
return $link;
}
add_filter( 'thesis_comments_link', 'thesify_disable_comments_link', 11 );
{
if( get_comments_number() == 0 )
return '';
return $link;
}
add_filter( 'thesis_comments_link', 'thesify_disable_comments_link', 11 );
Requested by @Tastelikecrazy