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
<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 blog<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
<!--<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: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
.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.