Replace "Subscribe to: Posts (Atom)" With "Subscribe to: Posts (RSS)"

Posted by Lasantha Bandara on June 30th, 2009 File Under : change template, feeds2 Comments

1.Log in to your dashboard--> layout- -> Edit HTML

2.Click on "Expand Widget Templates"

3.Scroll down to where you see this:

<b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:feedLinksMsg/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
</b:loop>
</div>
</b:includable>

4.Replace above with below code.

<b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:feedLinksMsg/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url + "?alt=rss"' type='application/rss+xml' target='_blank'><data:f.name/> (RSS)</a>
</b:loop>
</div>
</b:includable>

5.Now save your template and your done.

File Under : change template, feeds

2 Responses to “Replace "Subscribe to: Posts (Atom)" With "Subscribe to: Posts (RSS)"”

  1. floydian says:

    Thanks for this. Appreciate your effort. Cheers

  2. Hoteline says:

    Thanks for this post,it is working fine,once again thank you.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.