Wednesday, June 27, 2012

How to Add a Comments Counter Button to Blogger Blogspot

In this Blogger tutorial (Blogspot tutorial) you will learn how to add a comments counter button to Blogger (Blogspot) to show off the number of comments each of your posts has received.

A comment counter button (bubble) will have the effect of encouraging visitors to comment on your Blogger blog and also help to highlight the credibility of your articles.


Installing this Blogger hack to add a comment counter button only takes a few minutes. The changes needed to add the comment bubble to Blogger while not difficult do involve adding a small snippet of code to your Blogger template in two places. For this reason I strongly urge you to back up your Blogger template before attempting this blogger hack.


Blogger Tutorial Difficulty - easy to medium

How to Add a Comments Counter Bubble to Blogger
A Step-by-Step Walkthrough
The following steps will insert a fully clickable comments counter button on the same line as the post title in Blogger. The comments counter is right aligned by default.

  1. Log in to Blogger and the blog you wish to apply these changes to

  2. Select Design > Edit HTML

  3. Click on Download Full Template to back up your template before you make any changes

  4. Check the Expand Widget Templates box

  5. In the CSS Styling section of your Blogger template and just before the ]]></b:skin>

    .comments-button {
    width : 48px;
    height : 48px;
    background : url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTCIn7W0Qt8kwCV9PGbumEqCBtVinyVseXtKPwBLkSz-575192hzk6_Z6kr8jV2nJtKlAhXRfaUVQgKcm6fJZQx1orN7WB9vrVDepyob18cs4eWV6WoCosNT3oviuJ2BUoqs-aYxHjWYEo/s200/comment-counter-bubble.png) no-repeat;
    float : right;
    font-size : 18px;
    margin-top : -15px;
    margin-right : 2px;
    text-align : center;
    padding-top:10px;
    }

  6. Now find the following block of code using CTRL key + F

    <b:includable id='post' var='post'>
    <div class='post hentry uncustomized-post-template'>
    <a expr:name='data:post.id'/>
    <b:if cond='data:post.title'>
    <h3 class='post-title entry-title'>
    <b:if cond='data:post.link'>
    <a expr:href='data:post.link'><data:post.title/></a>

  7. Copy this code block:

    <b:if cond='data:post.allowComments'>
    <a class='comments-button' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:post.numComments/></a>
    </b:if>

  8. Insert as follows:

    <b:includable id='post' var='post'>
    <div class='post hentry uncustomized-post-template'>
    <a expr:name='data:post.id'/>
    <b:if cond='data:post.title'>
    <h3 class='post-title entry-title'>
    <b:if cond='data:post.allowComments'>
    <a class='comments-button' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:post.numComments/></a>
    </b:if>

    <b:if cond='data:post.link'>
    <a expr:href='data:post.link'><data:post.title/></a>

  9. Save template and then view blog to admire your new comment counter badge.


Tips and Troubleshooting
  1. If you prefer you can replace the button image I have provided with your own image. You can find other buttons easily enough by doing a Google search with a term like "speech button icons".

    Upload your button to a hosting service such as Photobucket and change the URL address of the image in the CSS styling section. The following example will render a smaller blue button. Note I have reduced the font size to accommodate the change. You may need to play around with the settings to get the font sizing right for your image.

    .comments-button {
    width : 48px;
    height : 48px;
    background : url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBzI52tG8-Plt5l_8fiEdk4u3PjIcY6kmaC2dicUK6bVnsWlSFp89g18r85ypAaWK_KHpfXFyaSy2tN4ZEOw9Iqjj-5nwsElCdWCSAXcTw7CzcoMk7ydYn5aOJnGxdyGQYi1y4ZI4KR3Q8/s200/comment-counter-bubble-2.png) no-repeat;
    float : right;
    font-size : 14px;
    margin-top : -15px;
    margin-right : 2px;
    text-align : center;
    padding-top:10px;
    }


  2. If you want your comment counter to be left aligned instead of right you will need to change the CSS styling from float:right; to float:left;

Covered today how to add a comments counter to a Blogger blog (blogspot blog) that will appear to the right of your blog post title. A comments counter is a way to encourage visitors to comment and is a way of showing off the credibility of your blog posts. Good luck!

    Random Posts...!!!

  • Blog SEO tags Nofollow Labels - save your blog from SPAM
    Blog SEO tags Nofollow Labels - save your blog from SPAM
    04/02/2012 - 0 Comments

    Blogger Label Links effect your blog or site Page Rank in a negative way and that's a fact. Why follow…

  • Guest Posting - Best Link Building Strategy
    Guest Posting - Best Link Building Strategy
    09/08/2012 - 76 Comments

    Link building strategies have several facets. Several strategies are hailed, one such strategy is guest…

  • Optimize SEO title tag in Blogger - H2 tags
    Optimize SEO title tag in Blogger - H2 tags
    05/02/2012 - 0 Comments

    Every headline tags starts from H1 (blog or site title) and go up to H6 in decreasing order of…

  • Numbered comments on threaded comments for Blogger/Blogspot
    Numbered comments on threaded comments for Blogger/Blogspot
    18/10/2013 - 1 Comments

    In a past tutorial, I've been talking about how you can add numbered comments to your blogger blog and today…

  • New On-Page Optimization Website Analysis
    New On-Page Optimization Website Analysis
    21/09/2012 - 0 Comments

    In the SEO process pre optimization site review and analysis is very much important. In case of on-page…

  • How To Publish Your Posts To Facebook Page Automatically
    How To Publish Your Posts To Facebook Page Automatically
    24/06/2012 - 0 Comments

    Facebook is the best social networking site which is widely used in the world. Every blogger give first…

  • How to start Google Adsense Affiliate Program - Review
    How to start Google Adsense Affiliate Program - Review
    21/04/2012 - 1 Comments

    How Google Affiliate Ads WorksThe Google Affiliate Ads program is like AdSense but you are able to chose your…

  • How to Make More Profit from Your Blog - Easy Plan
    How to Make More Profit from Your Blog - Easy Plan
    04/08/2012 - 0 Comments

    Do you want to make more money from your blog? Most new bloggers take the wrong step. They monetize first…

If You Enjoyed This Post Please Take 5 Seconds To Share It!

1 comments:

Unknown said...

I Love your articles guys keep it up.
Newshive Bookmarking

Post a Comment

Please feel free to comment on this topic.

horizontal random post

    Random Posts...!!!

  • Newbie Bloggers Tips that Must Follow
    Newbie Bloggers Tips that Must Follow
    23/08/2012 - 0 Comments

    Whenever a newbie blogger starts up his own blog, he has to take many decisions and setup his goals. In the…

  • How To Automatically Redirect A Blogger Blog To Another URL
    How To Automatically Redirect A Blogger Blog To Another URL
    16/10/2013 - 0 Comments

    There are a number of reasons you may want to automatically send visitors to your blog to another URL or from…

  • Advanced Mashable Style Following Widget For Blogger
    Advanced Mashable Style Following Widget For Blogger
    06/10/2013 - 0 Comments

    Adding eye-catching social sharing widget to your blog/site increase your chances of getting more…

  • Learn How to Add a Flickr Slideshow Gadget to Blogger
    Learn How to Add a Flickr Slideshow Gadget to Blogger
    28/06/2012 - 0 Comments

    I am going to show you how to add a Flickr Slideshow (Flickr Photostream) to a Blogger blog (Blogspot blog).…

  • Facebook Essential SEO: The Leading Social Network
    Facebook Essential SEO: The Leading Social Network
    22/09/2012 - 1 Comments

    Now these days social media is an important part of search engine optimization and due to huge popularity…

  • How to start Google Adsense Affiliate Program - Review
    How to start Google Adsense Affiliate Program - Review
    21/04/2012 - 1 Comments

    How Google Affiliate Ads WorksThe Google Affiliate Ads program is like AdSense but you are able to chose your…

  • Add CSS Styling to Blockquotes in a Blogger Template
    Add CSS Styling to Blockquotes in a Blogger Template
    29/06/2012 - 0 Comments

    Today I continue the series of Blogger tutorials (Blogspot tutorials) by showing you how to apply CSS styling…

  • Numbered comments on threaded comments for Blogger/Blogspot
    Numbered comments on threaded comments for Blogger/Blogspot
    18/10/2013 - 1 Comments

    In a past tutorial, I've been talking about how you can add numbered comments to your blogger blog and today…