This tutorial will show you how to remove “Show post with label” in blogger/blogspot blogs.
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
How to remove the status message 'Showing Posts With Label' from blogger
- Go to Blogger Dashboard
- Click on DropDown Menu and select Template
- Backup your Template before making any changes to your blog
- Now Click on Edit HTML --> Proceed --> Expand Widget Templates
- Press Ctrl + F and search the code shown below
<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>
<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>
- Now replace the above code with the code shown below
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>
- Now Save Your Template
7 comments
Most tutorials show how to remove or replace the status message with static text. How do you display only the label name?
@Joey I can't understand what you are asking
instead of the standard status message 'data:navMessage', display only the label name?
@Joey Only label name cannot be displayed. You can display your own message in place of status message
Hi, I just want to ask how did you customize the comment form? Im really having a hard time figuring it out. I hope you can lend me some minutes to answer my questions. Thanks!
I am a blogspot user but i'm using some other template. So this above mentioned codes doesn't show in my template. What should i do than?
@Biswajyoti Mukherjee Search only this code
<div class='status-msg-body'>
now you will find the whole code
Click to Add a New Comment