Hello,
Is it possible to remove the comments only on blog posts belonging to one category ?
If so what code should I add or change ?
Is it also possible to change the text of the comment section such as “Replies” into “Comments” ?
Thank you very much
Hi,
Open single.php and look for line 43:
comments_template( '/includes/comments.php');
Replace it by this:
if(!in_category(16)){ comments_template( '/includes/comments.php'); }
Where 16 is the ID of the category in question.
Regards,
Josue
Regarding the other issue, open includes/comments.php and look for line 46:
$rep = __( 'replies', 'avia_framework' );
Replace it by this:
$rep = __( 'comments', 'avia_framework' );
Regards,
Josue
Thank you very much!