Hi Michael. In the default theme configuration there is a comment count icon on the top right of the post images on the home page. Can you post a link to your site, or a page on the theme demo site, that shows the comment bubble you’re seeing next to the category? Thanks.
I should have mentioned that I removed the option for there to be a thumbnail image displayed for Posts. The comment count icon is what I’m referring to though – is there a way to disable that? Basically turn it off?
Thanks
If you want to hide these green comment counts on thumbnails, there are two ways of doing it.
The first way is to turn off Thumbnail Comment Count under WP Admin -> Appearance -> Theme Options -> Blog, but, by doing that, you will also lose the counts on top of the posts.
If you want to preserve those counts in the posts, you can use this CSS code in your custom.css or in the style.css of your Hueman Child theme:
.post-comments { display: none; }
That code will just hide the counts on the thumbnails from showing. It will not disable them.
If you want to hide these green comment counts on thumbnails, there are two ways of doing it.
The first way is to turn off Thumbnail Comment Count under WP Admin -> Appearance -> Theme Options -> Blog, but, by doing that, you will also lose the counts on top of the posts.
If you want to preserve those counts in the posts, you can use this CSS code in your custom.css or in the style.css of your Hueman Child theme:
‘.post-comments { display: none; }’
That code will just hide the counts on the thumbnails from showing. It will not disable them.
Try adding this to your custom css:
.home .post-comments {
display: none;
}
I was looking to disable them across the entire site so adding the below to my style.css of my child theme worked great. Thank you!
.post-comments { display: none; }