Sunday 24 August 2014

hide , show widgets in blogger

Blue Highlighted First line is based on your choice. you have to find your code as per your requirement. Now lets see code for the same.

What you want?
Code
Show gadgets only on home page. <b:if cond='data:blog.pageType == &quot;index&quot;'>
Hide gadgets from static pages & post pages.
Display gadgets only on post pages of blogger. <b:if cond='data:blog.pageType == &quot;item&quot;'>
Hide gadgets from home page & static pages.
Show gadgets only on static pages <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
Hide gadgets from home page & post pages.
Show gadgets on post pages & static pages <b:if cond='data:blog.pageType != &quot;index&quot;'>
Hide gadgets from home pages
Show gadgets on home page & static pages. <b:if cond='data:blog.pageType != &quot;item&quot;'>
Hide gadgets from post pages
Show gadget in home page & posts pages. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>
Hide gadgets from static pages
Show gadgets only on a specific page. <b:if cond='data:blog.url == &quot;Your_Link_Location&quot;'>
Show gadgets except any one specific page. <b:if cond='data:blog.url != &quot;Your_Link_Location&quot;'>

No comments:

Post a Comment