Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Mailchimp Pop-Up Form still showing up after disabling.

Solved

Mailchimp Pop-Up Form still showing up after disabling.

aelongacre
Not applicable
3 0 0

I have disabled our mailchimp pop-up form but it is still active on our website. Mailchimp said that the code is probably floating around in the backend of Shopify and needs to be deleted. Does anyone have any suggestions? Our site is www.sundaysupplyco.com and this is the pop-up I am trying to delete. 

Screenshot 2023-10-11 at 2.05.09 PM.png

Accepted Solution (1)

Moeed
Shopify Partner
6330 1716 2069

This is an accepted solution.

Hey @aelongacre 

 

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>
.mc-modal {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1697055112313.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 2 (2)

Moeed
Shopify Partner
6330 1716 2069

This is an accepted solution.

Hey @aelongacre 

 

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>
.mc-modal {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1697055112313.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


GarethAJ
Excursionist
12 0 4

Hi

I tried this. It did remove the pop up. but it also made the screen go black with dark shaded out .. but only on on desk top.  Then we couldnt click on anything on the website.  So I removed the code.

The pop up came back .. but its on,y on desk top, not mobile.

I just need to find this MC code and remove .. trouble is I cant find it anywhere.

<div id="PopupSignupForm_0" widgetid="PopupSignupForm_0">
<!-- MC BANNER -->
<div class="mc-banner" data-dojo-attach-point="bannerContainer" style="display: block;">
<div class="mc-layout__bannerContent">
<iframe src="about:blank" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="width: 100%; height: 90px;" data-dojo-attach-point="iframeBannerContainer"></iframe>
</div>
</div>

<!-- MC MODAL -->
<div class="mc-modal" data-dojo-attach-point="modalContainer" style="display: block; opacity: 1;">
<button aria-label="Close" class="mc-closeModal" style="display:block !important;" data-action="close-mc-modal" data-dojo-attach-point="modalClose"></button>
<div class="mc-layout__modalContent" style="max-height: 377px;">
<iframe src="about:blank" frameborder="0" marginwidth="0" marginheight="0" style="width: 100%; height: 377px;" data-dojo-attach-point="iframeModalContainer"></iframe>
</div>
</div>

<!-- MC MODAL OVERLAY -->
<div class="mc-modal-bg" data-dojo-attach-point="modalOverlay" style="display: block; opacity: 0.65;"></div>
</div>