Hi,
how can I do to suppress totally the comments on the blog posts?
Thanks!
Eymata
Hey eymata!
You can add this on Quick CSS or custom.css to remove the comment area:
div.comment-entry.post-entry {
display: none;
}
Best regards,
Ismael
Thanks, it has suppressed the comments, but I don’t know why it’s still written “0 comments” under the title of the post. Ho is it possible to remove that also?
Now I’ve updated it doesn’t work anymore. On the sheet “Posts” I’ve suppressed the line
“wordpress function that loads the comments template “comments.php”
comments_template( ‘/includes/comments.php’)”
I don’t understand because on one post, it doesn’t appears “0 comments”, and on all the others it appears.
Thanks for your help!
Eymata
Hey!
You can remove the comment count using this on Quick CSS:
.comment-container.minor-meta, .text-sep-comment {
display: none;
}
Regards,
Ismael
Thanks! It works, but I had to re-write the post! :)