Removing WP Generic Comments Section from Single Posts

Posted in: Newspaper
Post count: 17

Hi,

I disabled the WP generic comments and installed a plugin for Facebook comments. However, on single post pages I still see a line “No Comments” from the generic comments template. I tried to locate where to edit or remove this on comments.php and many other places, but I couldn’t.

See a screenshot on this link – https://drive.google.com/file/d/0B95NvGMpDn8cMHJwam1RQzFVN0E/view?usp=sharing

Basically, I want to remove that ‘No Comments’ text from the single post pages.

Please help.

Post count: 22421

Hi,
In order to remove the no comments text, you will have to disable comments on posts from the theme panel: http://screencast.com/t/Bn9ih8wA
If this also disable your facebook comments, then you can use css to hide the message like so:
.comments{
display:none!important;
}

I hope this helps.
Thanks.

Post count: 17

Thanks for replying Bogdan.

I tried both these methods, and in both occasions the Facebook comments plugin also get disabled. I use ‘Super Socializer’ plugin for FB comments.

Please help, I only want to eliminate that ‘No Comments’ line from the post pages. (and leave FB comments plugin without a trouble).

Post count: 22421

Hi,
Please provide a link to your website so I can provide a css code that I can test on your site.
Thanks.

Post count: 17
Post count: 22421

Hello,

You can use this css to remove it:
.td-comments-title-wrap {
display:none!important;
}
.td_block_related_posts{
padding-bottom:0px!important;
}
.td_block_wrap .td-next-prev-wrap, .td_block_wrap .td-load-more-wrap{
margin-bottom:0!important;
}

I also removed the extra space by reducing margins and paddings.

I hope this helps.
Thanks.

Post count: 17

Thank you BogdanB!
This worked like magic 🙂 It’s fixed now.

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.