Saturday, March 1, 2014

Removing Showing post with label..


In Blogger, we set the posts with suitable label. The label is helpful for visitors when they search the post as require. When I click in a label, the blogger filters the posts tagged with that particular label. This is very good feature for blog. Unnecessarily, I don't need a big box saying the "Showing posts with label ......... Show all posts". I hate this feature.

So, I remove this feature from my Blog. If you also unlike this feature, you can also remove this as follow;

Steps

1. Log in to your blogger account
2. Go to Template >> Click Edit HTML
3. Using Ctrl+F  search the following part of code : (Click anywhere inside the editor and press CTRL + F )
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div class='status-msg-wrap'>
<div class='status-msg-body'>
<data:navMessage/>
</div>
<div class='status-msg-border'>
<div class='status-msg-bg'>
<div class='status-msg-hidden'><data:navMessage/></div>
</div>
</div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
4. When you find above code lines, you recode the code line number in your mind. Copy the below codes and replace in above code. (If you have more confidence over Edit HTML, you can Delete the above codes and Add the below code same place.)
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
5. Save your Template and View your Blog. You must checking this feature by clicking your any Label.
Thank!

No comments: