How do remove the pop, "Get Updated with Latest Offers and Products" on Impulse Theme?

Solved

How do remove the pop, "Get Updated with Latest Offers and Products" on Impulse Theme?

BGray
Tourist
8 0 1

I looked at my pop up in Customize Theme and that is disabled and a completely different one I created. I did read in a former thread to go into the customize section under the body tag and enter some type of code; however, that was for another theme. Can anyone assist me? It is beyond annoying and blocks so much space. Here's a screenshot on my Android phone.

IMG_20231229_003306.jpg

Accepted Solution (1)
fadi_yousif
Shopify Partner
346 43 67

This is an accepted solution.

Looks like it's been added by an app called PushOwl. Uninstall it if you don't need it. Alternatively, you can hide the element without uninstalling the app:

1. Navigate to assets --> theme.css

2. Add the following code to the end of the file:

.pushowl-simple-toast__action-buttons.action-button {
    display: none;
}

If the above doesn't work, try this:

.pushowl-simple-toast__action-buttons.action-button {
    display: none !important;
}

 

Freelance Shopify Developer


Did I help? Leave a tip!

View solution in original post

Replies 5 (5)

fadi_yousif
Shopify Partner
346 43 67

Sure, but I need the store URL

Freelance Shopify Developer


Did I help? Leave a tip!

BGray
Tourist
8 0 1

Hi Fadi, my apologies .... here it is, https://pelvicpainsolutions.com/. Thank you!

fadi_yousif
Shopify Partner
346 43 67

This is an accepted solution.

Looks like it's been added by an app called PushOwl. Uninstall it if you don't need it. Alternatively, you can hide the element without uninstalling the app:

1. Navigate to assets --> theme.css

2. Add the following code to the end of the file:

.pushowl-simple-toast__action-buttons.action-button {
    display: none;
}

If the above doesn't work, try this:

.pushowl-simple-toast__action-buttons.action-button {
    display: none !important;
}

 

Freelance Shopify Developer


Did I help? Leave a tip!

BGray
Tourist
8 0 1

Amazing and simple solution .... Thank you!

fadi_yousif
Shopify Partner
346 43 67

Awesome!

Freelance Shopify Developer


Did I help? Leave a tip!