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.
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.
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).
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.