How to hide "Showing posts with label" Message



Whenever you click on any label link, a status message "Showing posts with label .... show all posts" shows up. We can remove this message using a simple hack.

Hide "Showing posts with label" Message

  • First go to Template > Edit HTML 
  • In Blogger default templates, search for <body expr:class='&quot;loading&quot; + data:blog.mobileClass'>and in custom templates, search for <body> 
  • Add the below code just after above code.
<b:if cond='data:blog.pageType == &quot;index&quot;'><b:if cond='data:blog.searchLabel'><style>.status-msg-wrap{display:none;}</style></b:if></b:if>
Now save the Template and you won't see this message anymore.