Blogging
How to Remove SUBSCRIBE TO POSTS (ATOM) from blog post page
There are two Subscribe to post links are there. One you will find from blogger home page and another you will find from blog individual post page. Here I just wanted to explain you how to delete Subscribe to posts (ATOM) from blogger home page as well as post page. Initially I struggled to remove that, after that get to know how to remove stuffs. Many people trying to delete that link from there home and post page. So, I gave my experience here.
The below steps will explain you how to remove subscribe to post from your blogger home page.
Step 1: Login to Blogger
Step 2: Open Template tab and click Edit Template
Step 3: Search the below line in your HTML content
Step 4: You will find the below set of code
<b:if cond=’data:feedLinks’>
<div class=’blog-feeds’>
<b:include data=’feedLinks’ name=’feedLinksBody’/>
</div>
</b:if>
Step 5: From above code you need to delete below single line.
<b:include data=’feedLinks’ name=’feedLinksBody’/>
Step 6: That’s it. Going forward you wont see SUBSCRIBE TO POSTS (ATOM) in your blogger home page.
The below steps will explain you how to remove subscribe to post from your blog post page.
Step 1: Login to Blogger
Step 2: Open Template tab and click Edit Template
STep 3: Search the below line in your HTML content
Step 4: You will find the below set of code
<b:if cond=’data:post.allowComments’>
<b:if cond=’data:post.feedLinks’>
<b:include data=’post.feedLinks’ name=’feedLinksBody’/>
</b:if>
</b:if>
</b:loop>
Step 5: From above code you need to delete below single line.
Step 6: That’s it. Going forward you wont see SUBSCRIBE TO POSTS (ATOM) in your blog post page.
Enjoy!!!
0 comments