> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/bouncer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/bouncer/customize-bouncer/control-where-bouncer-is-shown.md).

# Control where Bouncer is shown

By default, Bouncer displays the age verification pop-up on every page until the visitor has verified their age. Here are some steps you can take to control how and where the Bouncer pop-up displays.

* [Disable pop-up on your store](#ps1)
* [Make pop-up display on cart page only](#ps2)
* [Make pop-up display on specific product or collection pages](#ps3)

### Disable pop-up from displaying on your store <a href="#ps1" id="ps1"></a>

If you simply want to disable Bouncer from displaying at all on your Shopify store, there is a button you can toggle off at the bottom of the Bouncer dashboard.

<figure><img src="/files/uOo8EzaDYP0UbTBtw4YH" alt=""><figcaption></figcaption></figure>

### Make pop-up display on Cart page only <a href="#ps2" id="ps2"></a>

1\. Starting from your Shopify admin dashboard, click on **Online Store**, then click on **Themes.**

2\. Find the theme you want to edit, click the **Actions** button, then click **Edit code.**

<figure><img src="/files/tlzWfWLlIJ9pKtASd5MS" alt=""><figcaption></figcaption></figure>

3\. Add the following snippet to your **theme.liquid** file. Adding it right above the line that says **\</head>** works well.

```html
<meta property="bouncer:prevent_popup" content="true" />
```

4\. Navigate to your theme's **cart-template.liquid** file or **cart.liquid** file.

<figure><img src="/files/Gf5lwlPRoVEtx8xsDjpx" alt=""><figcaption></figcaption></figure>

5\. Paste the follow snippet at the top of this file and then save your changes.

```
<meta property="bouncer:prevent_popup" content="false" />
```

### Make pop-up display on specific product/collection pages <a href="#ps3" id="ps3"></a>

1\. Add the following snippet to your **theme.liquid** file. Adding it right above the line that says **\</head>** works well.

```html
<meta property="bouncer:prevent_popup" content="true" />
```

2\. Click on the **Add a new template** link on the left.

![](/files/SUGMUkYEF3QPL0VTCpmG)

3\. From the **Create a new template** drop-down menu, select **product** or **collection**. Select **liquid** for the Template type. Input **bouncer** in the File name field. Then, click on **Create template** button.

![](/files/DT8OTe5jGOE62pJc6Tdo)

4\. Within this new template, paste the following snippet at the top of the file and then save your changes.

```html
<meta property="bouncer:prevent_popup" content="false" />
```

5\. Navigate the **Products** page on your Shopify admin panel. From here, either select the **All products** or **Collections** sub-menu.

![](/files/9lINCHxmBe0nYqx7Zzhu)

6\. Select the product or collection you'd like to make the pop-up display on.

![](/files/VrPsgF0UwGtsnS8wRNp3)

7\. Locate the **Theme Template** section on the page, and select **bouncer**.

![](/files/cq7ezVL9kmn3D4clXA1t)

Once you have saved changes made on the page, the Bouncer pop-up will then only show up on that page. Nice work 🎉
