How to Remove “Showing posts with label …. show all posts”

Step 1. Go to your Blog Dashboard –> Template –> Edit HTML 

Step 2. Click anywhere inside the template editor, then search following code using shortcut key “Ctrl +F”

<b:includable id='status-message'>

Step 3. After that click on the black arrow on the left to expand rest of the code.


Step 4. Below is the code that you need to remove.

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



Step 5. Delete the code from above and replace it with this one:

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


Step 6. Save the Template. 

Now check the result by clicking any of your labels.