Learn How To Show Hide Widgets In Blogger Blog. You Can Easily Show And Hide Widgets By Simply Adding Code. You Can Hide Widgets On Particular Page.
Before getting into the details of selective display,let us discuss about the different types of pages on blogger.
Before getting into the details of selective display,let us discuss about the different types of pages on blogger.
- home page- yea its your blogs home page as the name suggests(actually this is not a type. but i will still include it here..)
- Archive Page- Refers to archive pages..
- Item Page - Refers to Post Pages
- Index Page - Includes home page + label page + search results page
- Static Page – The newly introduced Blogger Pages
Selective Display..
There are different conditions to check the page type. You can use these conditions for the selective display.
There are different conditions to check the page type. You can use these conditions for the selective display.
<b:if cond='data:blog.pageType == "index"'>Hide Widget Only From Index Pages
Widget Code
</b:if>
<b:if cond='data:blog.pageType != "index"'>Show Widget Only On Home Page
Widget Code
</b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'>Hide Widget Only From Home Page
Widget Code
</b:if>
<b:if cond='data:blog.url != data:blog.homepageUrl'>Show Widget Only On Post Pages
Widget Code
</b:if>
<b:if cond='data:blog.pageType == "item"'>Hide Widget Only From Post Pages
Your Widget Code
</b:if>
<b:if cond='data:blog.pageType != "item"'>Show Widget Only On Static Pages
Widget Code
</b:if>
<b:if cond='data:blog.pageType == "static_page"'>Hide Widget Only From Static Pages
Widget Code
</b:if>
<b:if cond='data:blog.pageType != "static_page"'>Show Widget Only On Error Pages
Widget Code
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>Hide Widget Only From Error Pages
Your Widget Code
</b:if>
<b:if cond='data:blog.pageType != "error_page"'>Show Widget Only On This Page
Widget Code
</b:if>
<b:if cond='data:blog.url == "Page URL"'>Hide Widget Only From This Page
Widget Code
</b:if>
<b:if cond='data:blog.url != "Page URL"'>Now you can locate the emergence of your Tools
Widget Code
</b:if>
0 comments:
Post a Comment
Please do not spam Spam comments will be deleted immediately upon our review.
Regards,
JeHad Hussein
Note: Only a member of this blog may post a comment.