Removing Subscribe to Posts (Atom) and Post Comments (Atom) Feed Links in Blogger with 3 Unique ways
![]() |
| Removing Ugly Post and Comment Feed Links |
Instructions to Follow:
If you have already burned your Blogger blogs feed with a third party feed burning service like Feedburner.com then you won't be needing these feed links again as now a third party feed platform takes care of your post feeds.To remove posts (Atom) feed link in blogger go to your Blogger Template → Click Edit HTML → Look for the feed link data tag and delete it.. Your post feed link will look like the below code:Method 1: Removing Post Feed links by Deletion
Find the above code by pressing CTRL+F and enter the above string to find it and finally delete it to remove Posts(Atom) from your blog and save the template.<b:include data='feedLinks' name='feedLinksBody'/>
Now similarly find the below code by searching for <data:feedlinksmsg/> by using CTRL+F for Post Comments feed link and delete the entire below code and finally save your template to get rid of post feed links for forever from your blogTadaa! Your Blog is now free from these ugly Atom feed 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>
-
This method is one of the coolest methods and requires you too just comment some lines in HTML. Now that you know what you have to search for in the blogger template from the method 1, this method will get you the results in no time. Begin by searching for posts comment Atom feed by searching for <data:feedLinksMsg/> and replace the code above in Method-1 with the below code.Method-2: Removing Post Feed links with HTML browser Comments
and similarly for the posts (Atom) feed link replace <b:include data='feedLinks' name='feedLinksBody'/> with the following code:<!--<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>-->
This Method basically uses help of HTML comment tag to comment out a code which tells a browser that it's a comment and it should avoid rendering it, besides that those who don't wish to delete feed links than this is a good method to go with.<!--b:include data='feedLinks' name='feedLinksBody'/-->
If you thought Method-2 was the coolest then you might change your opinion after this method. In this method you need not edit anything and just have to add a few lines of CSS to hide the Post feed links. Begin by going to your Blogger Template → Click Customize → navigate to Add CSS and add in the below line of code to hide the feedlinks from your blogger blog.Method-3: Removing Post Feed Links by Hiding them with CSS
Isn't this method even more easier then the previous two methods? Well this method basically hides your html code from rendering giving you a clean blogger look..feed-links {display:none !important;}
While Method 1 and 2 may demand a blogger to save their template before hand in case of any unexpected errors especially Method 1 , Method 3 is way safest as it doesn't interfere with the HTML editor and in case of unexpected changes one can simply remove the CSS from the template customization menu.
+and+comment+feedlinks+in+Blogger+via+geniushowto.blogspot.com+blogger.jpg)