HELP with Pop-Up coding

Hello, my website is juliart-studio.com

There are 2 pop ups for the “Free US Shipping” and “Standard Processing Time” that appears on all of the pages (see screenshot). They are blocking the PRODUCT tab and my customers complained they can’t find my PRODUCT page due to these pop ups blocking the view.

I added these 2 pop ups in years ago via some app (which was already uninstalled). Shopify support said sometimes uninstalled apps can leave a “ghost” in the hard code of the Theme. Now I need to remove these pop ups completely. Can anyone help me with this?

Welcome to the Shopify Community! :waving_hand:
Could you please share your store URL so we can take a look?
If your store is password-protected, you can also share the storefront password (not admin access).

This will help us understand the issue better and guide you correctly.
Thanks!

Best regards,
Titu

Please try this code by following these steps:

Go to the online store - Theme - Edit Code.
Find the theme.liquid file

Add this code before the </ head> tag

<style>
.\32 c4-mars1,.\33 84-mars1 {
    display: none !important
}
</style>

Hey @juliartstudio

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.\32 c4-mars1, .\33 84-mars1 {
    display: none !important;
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

This is a very common issue caused by residual app code (“ghost code”) left in the theme, even after the app has been uninstalled.

To remove these pop-ups completely, the solution typically involves:

  1. Manually locating and deleting leftover code in the theme files

    • Common locations: theme.liquid, header.liquid, footer.liquid, theme.js, custom.js, or snippet files

    • Look for keywords related to the popups (e.g. “Free Shipping”, “Processing Time”, modal, popup, announcement, banner)

  2. Checking injected CSS or JavaScript

  3. These popups often persist because of fixed-position CSS or JS listeners still loading on every page

  4. Confirming no metafields or global settings are still triggering the elements

Once the code is fully removed, the Product tab will no longer be blocked across pages.

If you’re not comfortable editing theme files directly, I can help identify and safely remove the exact code causing this issue without breaking your theme.
You can reach me directly at partners@atddigital.com

Hope this helps.

Thank you! I’ve never edited code in a website and it took me a little while to find the theme.liquid file but your solution was spot on! Thank you so much!

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.