Page Nav

HIDE

Grid

GRID_STYLE

Top Ad

//

Breaking News:

latest

How to Rmove Show Post in Label in BLOGGER

When a reader clicks on a label on your blog, they are greated with a message telling them that they are now viewing all of your publishe...


When a reader clicks on a label on your blog, they are greated with a message telling them that they are now viewing all of your published posts that are categorised under that label. Todays tutorial will show you how to remove this from your blog or change the text that is displayed as well as how it looks.

change or remove showing all posts with label message

REMOVE THE “SHOWING POSTS WITH LABEL” MESSAGE
To remove the message completely following these quick steps. Go to Template > Edit HTML > Jump to Widget > Blog1. Under this you’ll see

<b:includable id='status-message'> ... </b:includable>
Click on the black arrow on the left to expand this code.

<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>
Replace it with the following

<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
Save the template. Now when a reader clicks on a label, the message won’t show. This is great when using navigation menus for different blog categories.