How can I turn off comments on Blog Posts (so it doesn’t say “Comments”) and then remove “Leave a Reply”when the user opens the full post?
I shut off all the options in WP discussion, but the word “Comments” still appears on the page with I insert Blog Posts and a post that came with the Enfold Theme (with headline a Nice Entry), there is “Leave a Reply”.
At this point, I don’t want comments or the ability for people to reply.
The site is esomethin.com/yoursource.
Thanks,
kfranck
Hey Kurt,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.comment_container, .comment_meta_container, .slide-meta-comments, .slide-meta-comments + .slide-meta-del{
display: none!important;
}
Best regards,
Vinay
i think the later setting of wordpress to get rid of commenting posts does not erase the former setting of an existing post with comments.
so i think that every new post is without these commenting option but older entries with existing comments do have this.
First you can goto Dashboard an erase all existing comments. And for all those posts with the permission of commenting you can edit this by open the post and kill that marker at the bottom
if you do not see those markers – on top of the wordpress editor there is a hidden option window – open it an mark comments and discussions.
Then you see on bottom of the post these fields.
yes vinay – this is a fast way !
.comment-entry.post-entry {
display: none;
}
btw. for what is that class “slide-meta-del” i can’t find it
Vinay:
I added the code you gave me (see below) in the Quick CSS and it fixed the problem. Thank you.
Kfranck
.slide-meta-comments, .slide-meta-comments + .slide-meta-del{
display: none!important;
}