Saturday, September 24, 2016

How to remove Showing posts with label XXX in blogger

How to remove Showing posts with label XXX in blogger


How to remove Showing post with label Home (or something else in your case) in blogger.

This is the matter.

First go to Blogger Dashboard. Then you can choose either Overview and click Template or directly go to Template. Then follow the following process.



After clicking template click Edit HTML.


Then click anywhere inside the template code, then search the following code using ctrl+F key.

<b:includable id=status-message>

After finding, click on the sideways arrow next to it, to expand the rest of code. Below is the code which should be removed.

<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>




Then remove the above code by the following code.

<b:includable id=status-message>
<b:if cond=data:navMessage>
<div>
</div>
<div style=clear: both;/>
</b:if>
</b:includable>


Now you are done.
Thanks for visiting this blog...


Available link for download