By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
BlogbeastBlogbeast
  • Adsense
  • Blogger
  • WordPress
  • Social Media
  • SEO
  • Tips
  • Offbeat
BlogbeastBlogbeast
Search
  • Adsense
  • Blogger
  • WordPress
  • Social Media
  • SEO
  • Tips
  • Offbeat
© 2025 Blogbeast. All rights reserved.
Blogger

How To Show/Hide Widgets On Specific Pages In Blogger

Last updated: 27/08/2022 5:39 PM
By admin

There are some situations where you want to show or hide certain widgets on particular pages such as home page, post pages, static pages, archive pages and even on particular posts.So many people have a question such as “How to show/hide widgets on particular pages“.Because there are some widgets which are meant for the home page and some for static pages or post pages.

Let us take an example of AdSense widget. A normal AdSense publisher is allowed to show a maximum of 3 ads(display ads) on each page if you show more than that it may lead to a ban. Also, we are not allowed show AdSense ads inside contact us, privacy policy page. So I’m here to explain to you how to do it. so let’s start to jump into the topic.Follow the steps below.

Step 1:

Go to Blogger Dashboard>Layout and find a widget which you want to show or hide.After finding just give it a unique name which doesn’t match any other widget name and click on save. Generally, we add custom widgets using HTML/CSS widget and use with a particular name to it.

Step 2:

Now click on Template>Edit HTML and check the expand widget in the template or HTML editor.

Step 3:

Next, click ctrl+f and enter the name which you have given in step 1.Let us consider the widget name as Popular posts and click Enter until you find the code which is similar to below code.

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
          Widget code
  </b:includable>
</b:widget>

Here Green highlighted name is the Title of the widget which we are finding and the Red highlighted code is the widget code ( a bunch of code for the widget) which is different for different widgets. In the above code id, title and type are also different for different widgets.Don’t bother about widget code because we are not going to change it.

Step 4:

Now we need to show or hide widget on particular pages.We have to just use a conditional statement to do this job as shown below.

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType != "Page_type"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

The above code is just a sample code with a conditional statement which is highlighted by Orange color.

Here are the different codes to show or hide widgets on different pages.

To Show Blogger Widget only in Homepage

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType == data:blog.homepageUrl'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To Hide Blogger Widget only in Homepage

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType != data:blog.homepageUrl'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To Show a Widget only in Post Pages

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType == "item"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To Hide a Widget only in Post Pages

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType != "item"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To Show a Widget only in a Specific Page or post

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType == "URL of the page or post"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

Replace URL of the page or post(which is highlighted with Blue color) with URL of the page or post where you want to show the widget.

To hide a Widget only in a specific Page or post

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType != "URL of the page or post"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

Replace URL of the page or post(which is highlighted with Blue color) with URL of the page or post where you want to show the widget.

To Show a Widget only in Static Pages

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType == "static_page"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To Hide a Widget only in Static Pages

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType != "static_page"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To Show a Widget only in Archive Pages

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType == "archive"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

To hide a Widget only in Archive Pages

<b:widget id= 'HTML11' locked='false' title='Popular posts' type='HTML'>
  <b:includable id='main'>
    <b:if cond='data:blog.pageType != "archive"'>
      Widget code
    </b:if>
  </b:includable>
</b:widget>

Add this conditional tags to your required widgets and display or hide wherever you want. If you have any queries or getting some problems please ask me in the comment section. Share this with your friends and Subscribe to newsletter for latest post directly in your inbox.

Read More

How to add Facebook Page like box on your blog – Blogger tips for beginners
How to add Blog/Website to Google Search Console to increase blog/website traffic
How To Completely Install A Blogger Template
How to Add Simple Countdown Timer Widget For Blogger
How to Install Responsive Sitemap with Labels in Static Page on Blogspot Blogger
Share This Article
Facebook Email Print
YoutubeSubscribe

Popular Posts

What is blogging and how to make money from it?
Offbeat

What is blogging and how to make money from it?

How To Make Money from Blogging
Monetization

8 Fastest ways on How To Make Money from Blogging

What is wordpress plugin
Wordpress

20 Best WordPress Plugins for your Websites in 2022

How to Uninstall Wordpress Plugins manually
Wordpress

How to Uninstall WordPress Plugins completely with Shortcode

What is wordpress plugin
Wordpress

What is wordpress plugin ? How to install WordPress plugin in 4 easy methods?

You Might Also Like

Blogger

How to write a post on blogger – Blogging tutorials for beginners

By admin
21/03/2018
Blogger

10 Best Tips for Indian bloggers – Hindi blogging tips

By admin
17/10/2018
How to make a BioLink for Instagram in Blogger
Blogger

How to make a Biolink for Instagram on Blogger

By admin
05/09/2022
BloggerWordpress

Difference between Blogger and WordPress | Best blogging platform in 2022

By admin
08/03/2022
BloggerJavascriptWidgets

How to add Simple Random Post Widget For Blogger

By admin
01/02/2022
BloggerSEO

How To Setup Custom Robots Header Tags In Blogger 2022

By admin
01/02/2022
Blogbeast

Welcome to BlogBeast, the place where blogging meets earning,and ideas turn into something big.

Quick Links

  • About
  • Contact Us
  • Subscribe

Useful Links

  • Disclaimer
  • Privacy Policy
  • Sitemap
© 2025 Blogbeast. All rights reserved.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?