Hello,
Thank you for your query and we are so sorry about the trouble this must have caused.
We don’t have the option to disable the comments feed using our plugin but you can add the following code to the website to remove them programmatically:
function disable_comments_rss_feed( $for_comments ) {
if ( is_comment_feed() ) {
return '';
}
return $for_comments;
}
add_filter( 'commentsrss2_comments_feed', 'disable_comments_rss_feed' );
This code would need to be added to the current theme’s functions.php
file.
Don’t hesitate to get in touch if you have any other questions.
Hi Miguel,
Great! That worked, thanks for your help.
Cheers Jodie
Hello,
Glad that everything has been sorted out.
Please feel free to reach out to us again in case you need any other assistance.
We are here to help.
Thank you.