How do I disable quiz popup from Broadcast theme page?

Solved

How do I disable quiz popup from Broadcast theme page?

LacsonRavello
Shopify Partner
5 0 7

Hi,

 

I have a TryInteract quiz popup on my website. I'd like to disable it from one of my pages but keep it running on the rest of the website. Does anyone know how to do that?

 

This is the page where I'd like to disable the popup:
https://lacsonravello.com/pages/bfcm-sign-up

 

Attached is screenshot of popup that appears. 

 

Is there a custom liquid code that I can copy and insert? My theme is Broadcast.

 

I appreciate any insight or help.

 

Best,

Kristina

 

Screen Shot 2022-11-19 at 4.25.45 PM.png

Accepted Solution (1)

GemPages
Shopify Partner
5625 1262 1287

This is an accepted solution.

Hello @LacsonRavello 

I would like to give you some recommendations to support you.

 

You can follow to hide popup on page with url '/pages/bfcm-sign-up':

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </head>

{% if page.url == '/pages/bfcm-sign-up' %}
       <style>
         #interact-promotion-popup {
            display: none !important;
          }
       </style>
{% endif %}

 

Hope my recommendation can works and support for you!

Best regards,

GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

View solution in original post

Replies 2 (2)

GemPages
Shopify Partner
5625 1262 1287

This is an accepted solution.

Hello @LacsonRavello 

I would like to give you some recommendations to support you.

 

You can follow to hide popup on page with url '/pages/bfcm-sign-up':

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid theme file
3. Paste the below code before </head>

{% if page.url == '/pages/bfcm-sign-up' %}
       <style>
         #interact-promotion-popup {
            display: none !important;
          }
       </style>
{% endif %}

 

Hope my recommendation can works and support for you!

Best regards,

GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
LacsonRavello
Shopify Partner
5 0 7

Hi GemPages Support Team,

 

The code worked! Thank you!

 

—Kristina