How To Show / Hide Widget In Mobile Page In Blogger

Showing / Hiding Widget In Mobile Page In Blogger: <b:if> is the most used tag in Blogger Theming. together, and a singleton <b:elseif> and <b:else> are a Conditional tag to give a statement which is used to perform different actions based on different conditions. </b:else></b:elseif></b:if>

If You Want To Show Any Widget In Mobile Page Use statement ‘True‘ 


<b:if cond='data:blog.isMobileRequest == "true"'>
    <!-- Here Is Your Widget Shown in Only Mobile Version-->

<b:else/>

  <!-- Here Is Your Widget Shown in Desktop Version-->

</b:if>

If You Want To Hide Any Widget In Mobile Page Use statement ‘False‘ 


<b:if cond='data:blog.isMobileRequest == "false"'>
    <!-- Here Is Your Widget Not Shown in Mobile Version-->

<b:else/>

  <!-- Here Is Your Widget Shown in Only Desktop Version-->

</b:if>

Check Here For : How To Hide/Show A Widget In A Single Page

Bloggers Buzz

You may also read these articles

1 Comment

Comments are closed.