Method 1
Remove - Subscribe to: Posts (Atom)in easy steps
1. Go to dashboard/ template/ edit HTML
2. Click the 'Expand Widgets Templates' box
3. Find:
<b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>
Remove this line:
<b:include data='feedLinks' name='feedLinksBody'/>
Now check it should remove Posts (Atom).
Method 2
Steps to
Remove - Subscribe to: Posts (Atom)in easy steps
1. Go to dashboard/ template/ edit HTML
2. Click the 'Expand Widgets Templates' box
3. Find:
<b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>
Remove this line:
<b:include data='feedLinks' name='feedLinksBody'/>
Now check it should remove Posts (Atom).
Method 2
Steps to Hide Atom Links in Blogger
Follow the below steps to hide both Atom links from your blog.
- Select the blog.
- Go to Template > Customise > Advanced > Add CSS
- Now, paste the below CSS code
.feed-links {display:none !important;}
- Click on "Apply to blog" button.
Now, both Atom links will not visible in your blog.
If you want Atom links to appear back, clear the above code from "Add CSS" and click on "Apply to blog" button.
Steps to Remove Atom Links from Blogger
Follow the below steps to remove both Atom links from your blog
- Go to Template > Edit HTML
- Search for the following lines.
<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>
- Once you find these lines, delete all those lines from your template.
- Click on “Save template” button.