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='"loading" + data:blog.mobileClass'>
and in custom templates, search for<body>
- Add the below code just after above code.
<b:if cond='data:blog.pageType == "index"'><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.