When posting a question, please include a link to your site. It makes it easier to see what problems you might have, plus we can see if you have created a child theme or installed certain plugins.
The easiest way to to hide the comments section is using CSS. If you’ve created a child theme, then you want to copy & paste the rule below into your child theme’s style.css file. Otherwise, use a CSS plugin like Jetpack or Custom CSS Manager. You don’t want to modify any of the theme files directly.
#comments {
display: none;
}
It doesn’t look like you have a child theme, so use a CSS plugin and copy in the rule that I posted above. That will hide comments from all of your posts & pages. Actually, use this modified rule instead:
#comments,
.postmeta .meta-comments {
display: none;
}
This will also hide the phrase # comments that you might see in what is known as the “meta” section of a post or page.
Thanks very much for your help, I will give all that a go.
Really appreciate your quick reply 🙂