• Resolved MichaelPalazzolo

    (@michaelpalazzolo)


    Hi there,
    Is it possible to remove the Comment bubble that appears next to the Category of the Posts on the Home page?

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • 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.

    Thread Starter MichaelPalazzolo

    (@michaelpalazzolo)

    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;
    }
    Thread Starter MichaelPalazzolo

    (@michaelpalazzolo)

    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; }

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Remove Comment Bubble’ is closed to new replies.