Now in new updated templates you can mostly widgets are present in home page but when you open any post it was hide . like slideshows or footer columns etc.
Now with this trick you can also show or hide any widget from home, post, static page, archive page in blogger . Mostly peoples want to hide all widgets in pages on blogger , but blogger was not add this type of trick to show or hide widgets in pages, home, post . That's why you can do it manually do this work , its very simple follow some easy steps to do it . its make your blogger more attractive . now you can manually show or hide any widgets .
Special- If you don't know then i am tell you that when you add Google ads inside the content of your contact or privacy policy pages in blogger Google adsence was disable your account .With the help of this trick you can hide google ads in this particular page .
5. After you see your widgets full code follow this step to hide any widgets from home, page, post . Add this code which was in bold letter .
To show Blogger widget only in post Pages:
To show the widget in a Specific Page:
URL_Of_Page : Change this with your specific page URL .
To hide a widget only in a Particular Page:
URL_Of_Page : Change this with your Particular page URL .
To show widgets only in Static Pages:
To hide widgets in Static Pages:
To show widgets only in Archive Pages:
6 . After add this code , Save your template .
Enjoy Blogging :)
If you like this post or any other please share with your friends on facebook , google+ , Twitter .
If you have any problem feel free and write your problems in Comment !!
Now with this trick you can also show or hide any widget from home, post, static page, archive page in blogger . Mostly peoples want to hide all widgets in pages on blogger , but blogger was not add this type of trick to show or hide widgets in pages, home, post . That's why you can do it manually do this work , its very simple follow some easy steps to do it . its make your blogger more attractive . now you can manually show or hide any widgets .
Special- If you don't know then i am tell you that when you add Google ads inside the content of your contact or privacy policy pages in blogger Google adsence was disable your account .With the help of this trick you can hide google ads in this particular page .
when you add Google ads inside contact or privacy policy pages in blogger Google adsence was disable your account . http://t.co/C6fw3oeNbg
— The Tricks Free (@thetricksfree) September 1, 2013
Show/Hide Widgets/Gadgets In Home/Post/Static/Archive Pages In Blogger
1. Go to Blogger > Template > Edit html .
2. Create backup of your template , for your blogger's template safety .
3. Now click on jump to widget and select that template which was you want to hide or show in post, home, page . When you click on any widget its automatically go on that widget code .
4. Expand the code with the click of arrow button on left side of code .
Like : i am open my 'Latest Templates' widget .
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
5. After you see your widgets full code follow this step to hide any widgets from home, page, post . Add this code which was in bold letter .
To show the widget only in Homepage:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
To show Blogger widget only in post Pages:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
To show the widget in a Specific Page:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url == "URL_Of_Page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
URL_Of_Page : Change this with your specific page URL .
To hide a widget only in a Particular Page:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url != "URL_Of_Page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
URL_Of_Page : Change this with your Particular page URL .
To show widgets only in Static Pages:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType != "static_page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
To hide widgets in Static Pages:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType != "static_page"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
To show widgets only in Archive Pages:
<b:widget id='HTML1' locked='false' title='Latest Templates' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType == "archive"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if>
</b:includable>
</b:widget>
6 . After add this code , Save your template .
Enjoy Blogging :)
If you like this post or any other please share with your friends on facebook , google+ , Twitter .
If you have any problem feel free and write your problems in Comment !!





0 comments:
Post a Comment