How to Remove "Showing Posts With Label" Message from Blogger

When you hit search from blogger search box a status message shown "Showing Posts with The Label XYZ show all posts" Some times this message may be different according to different templates.
Some people do not want to show this message on their blog and want to remove this message from their blog. Here in this article you will learn how to remove this message from your blogger blog.

How to remove Label Search Status Message?

All you have to do that just go to your  blogger dashboard and click on "Template" then Edit.
Now Press CTRL+F and find this code.
<b:includable id='status-message'>
After finding this code you will see the complete code as 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>

After Finding above Code Replace it with the below code.
<b:includable id='status-message'>
 <b:if cond='data:navMessage'>
<div>
</div>
 <div style='clear: both;'/>
 </b:if>
</b:includable>