[TUTORIAL] How to Remove Showing Post with Label on Blogspot


I posted about creating forwarding or directing pages last time but have you notice that each time you click the tab there's a message saying "Showing Post with Label" just before your post. This is also the same when you click a label link.  Well, aside that it doesn't looks good, it is quite useless also. That's why this time I'm going to make a tutorial on how to get rid of it. It is very easy just follow the steps below.




STEP 1: Go to your Dashboard -----> Template -----> Edit Template

STEP 2: Click anywhere inside the template code, then Find ( CTLR + F ) the code below:

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

STEP 3: When you found it, click the arrow beside it's line number to reveal the rest of the code.





                    Then delete the codes in that line number




                     For clearer look, below is the codes that you have to delete.
                            <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 4: 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 5: Save it. View your blog then check it by clicking any tabs, the message "Showing Post with label" should be no where to be found already.



No comments:

Post a Comment