I have visited many sites to know the method to hide blogger widgets on post,statict or home page in blogger but 90% methods did not worked.Some methods are able to hide the widgets or show widgets but they unable to stop them from loading hence slows down the loading speed of blog.The method usually used are blogger conditional tags and using CSS property.So, today i will show you how you can hide or show blogger widgets on post,static or any other pages in blogger.This method will also restrict blogger widgets from loading hence increasing loading speed of your blog and offering a good user experience.First of all i will show you how you can hide a widget from static page.After that you will be able to hide any widget or show any widget from pages you want.
Hide A Widget From Static Page In Blogger
Step 1 : Go to Blogger>Dashboard>Theme>Edit Html
Step 2 : Now find the widget you want to hide or show on some pages.You can do so by click jump to and the selecting the desired widget.
Step 3 : Now Expand The Widget Code.
Step 4 : Add the following code after <b:includable id='main'>
Follow the above steps and use the code below for your desired function.
Step 2 : Now find the widget you want to hide or show on some pages.You can do so by click jump to and the selecting the desired widget.
Step 3 : Now Expand The Widget Code.
Step 4 : Add the following code after <b:includable id='main'>
<b:if cond='data:blog.pageType == "static_page"'>Step 5 : Now click save templete and visit your blog to see the results.
<b:remove/>
</b:if>
Follow the above steps and use the code below for your desired function.
Hide A Widget From Home Page In Blogger
<b:if cond='data:blog.url == data:blog.homepageUrl'>Hide A Widget From Item Pages Or Post Pages In Blogger
<b:remove/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>Hide A Widget From Index Pages In Blogger
<b:remove/>
</b:if>
<b:if cond='data:blog.pageType == "index"'>Hide A Widget From Archieve Pages In Blogger
<b:remove/>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>Hide A Widget From Mobile In Blogger
<b:remove/>
</b:if>
<b:if cond='data:blog.isMobileRequest'>
<b:remove/>
</b:if>