How to remove this notification bar"This website would like to" and WhatsApp icon in the bottom.

Topic summary

A Shopify store owner is trying to remove leftover elements from an uninstalled app:

Two problematic elements:

  • A notification bar at the top saying “This website would like to send you awesome updates and offers”
  • A WhatsApp icon in the bottom right corner

Initial solution attempted:
A responder suggested adding CSS code to the theme.liquid file (above the </head> tag), but this only removed the WhatsApp icon—the notification bar persisted.

Working solution:
The issue was resolved by adding specific CSS targeting the notification dialog at the end of theme.liquid:

.wigzo-push-dialog-iframe-div {
  display: none !important;
}
.dialog-opt-in {
  display: none !important;
}

This successfully hides both the push notification dialog and related opt-in elements. Another user later requested help with the same problem, and the original poster shared this working solution.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

Hello,

How to remove this leftover code from an app.

  • This notification bar on the top “This website would like to send you awesome updates and offers”
  • Whatsapp icon on the bottom right

https://dophari.com/products/refillable-notepad

1 Like

Hi @rishabhshokeen
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

Hope this can help you, If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

The notification bar is still showing after adding the code

BSSCommerceHDL_0-1723799161690.png

Is that notification bar you mentioned? or can you capture screen your notifcation bar you mean

I’m talking about this circled updates offfer box

have you solved your problem . if yes than kindly help me with the same problem

You need to add thus code in the end of the theme.liquid

.wigzo-push-dialog-iframe-div {
display:none !important;
}
.dialog-opt-in {
display:none !important;
}