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 == "index"'> |
Hide gadgets from static pages & post pages. | |
Display gadgets only on post pages of blogger. | <b:if cond='data:blog.pageType == "item"'> |
Hide gadgets from home page & static pages. | |
Show gadgets only on static pages | <b:if cond='data:blog.pageType == "static_page"'> |
Hide gadgets from home page & post pages. | |
Show gadgets on post pages & static pages | <b:if cond='data:blog.pageType != "index"'> |
Hide gadgets from home pages | |
Show gadgets on home page & static pages. | <b:if cond='data:blog.pageType != "item"'> |
Hide gadgets from post pages | |
Show gadget in home page & posts pages. | <b:if cond='data:blog.pageType != "static_page"'> |
Hide gadgets from static pages | |
Show gadgets only on a specific page. | <b:if cond='data:blog.url == "Your_Link_Location"'> |
Show gadgets except any one specific page. | <b:if cond='data:blog.url != "Your_Link_Location"'>
|
No comments:
Post a Comment