Breaking News
Loading...
Monday, February 25, 2013

Info Post

How to Add Rss Feeds Image button in front of all your blogger labels, so that your readers can subscribe to your particular categories only they like the most instead of subscribing for your all blog posts.This is very useful for blogs who have mixed type content with several different categories in there
blog.
Preview(See IMG)Add Label Rss Feed Link Button To Each Blogger Categories

HOW TO ADD RSS FEED BUTTON TO EACH BLOGGER LABEL?

Note 1- Back up Your Template before applying this hack.
Note 2- Your Blog must have Label widget.
  1. Login to Blogger and Go To  Layout > Edit Html
  2. Check Expand Widgets.
  3. Now search for below code :-
          <b:loop values='data:labels' var='label'>
            <li>
              <b:if cond='data:blog.url == data:label.url'>
                <span expr:dir='data:blog.languageDirection'><data:label.name/></span>
              <b:else/>
                <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
              </b:if>
              <b:if cond='data:showFreqNumbers'>
                <span dir='ltr'>(<data:label.count/>)</span>
              </b:if>
            </li>
          </b:loop>
  4. And replace the above codes with below one :-
          <b:loop values='data:labels' var='label'>
            <li>
     <a expr:href='data:blog.homepageUrl + "feeds/posts/default/-/" + data:label.name'>
         <img alt='Subscribe' src='http://www.feedburner.com/fb/images/pub/feed-icon16x16.png' style='vertical-align:middle;border:0' />
     </a>
              <b:if cond='data:blog.url == data:label.url'>
                <span expr:dir='data:blog.languageDirection'><data:label.name/></span>
              <b:else/>
                <a expr:dir='data:blog.languageDirection' expr:href='data:label.url'><data:label.name/></a>
              </b:if>
              <b:if cond='data:showFreqNumbers'>
                <span dir='ltr'>(<data:label.count/>)</span>
              </b:if>
            </li>
          </b:loop>
  5. Save template
  6. See Your Blog Labels widget
# You Can Change image(http://www.feedburner.com/fb/images/pub/feed-icon16x16.png) With your onw image Url in Above Code

0 comments:

Post a Comment