How To Remove Showing Posts With Label From Blogger Label Pages updates (2 min Ago)
Blogspot blogs have some unnecessary widgets and features. When a
user click on one of your labels, blogger filters your posts tagged with
that particular label and display a box saying Something like “Showing Posts With Label (label name). Show all posts”. But we don’t need this box!! This box ruins your website design and add an unprofessional touch.
So, if you want to remove showing posts with label, follow me. First
backup your blogger template by going template Backup/Restore-Download
Full Template. Then go to Blogger Dash Board-> Template -> Edit
HTML -> Tick Expand Widget Templates and find the following part of
code:
1 |
<b:includable id='status-message'> |
Below is this code that you need to remove – along with the first one, as well:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<b:includable id='status-message'> <div class='status-msg-wrap'><a href="http://brieftutorials.com/wp-content/uploads/2013/03/Remove-Showing-Posts-With-Label-in-Blogger.jpg"><br class="Apple-interchange-newline" /></a> <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> includable><span style="line-height: 1.5em;"> |
Replace the above code with this one:
1 2 3 4 5 6 7 |
<b:includable id='status-message'> <b:if cond='data:navMessage'> <div> </div> <div style='clear: both;'/> </b:if> </b:includable><span style="line-height: 1.5em;"> |
Now Save the template and view your label pages, no more “Post With label Message box there!
Comments
Post a Comment