How can I remove the theme default popup from my website?

Here is my website: https://carplay2auto.com/

You will get TWO entry popups after you enter the website.

The first one, I guess, is the theme default popup. And I don’t want it.

The second one is app-generated. I installed it because it can be designed freely.

Now I want to delete the first one (the theme default one), I didn’t find the remove option in the ‘theme-customerize’, so I think I should edit the code. Does anyone know where to delete it? Thanks in advance.

Hallo @kattlinkk

You can add code by following these steps to change

  1. Go to Online Store → Theme → Edit code > assets > base.css

paste below code at bottom(base.css)

.pswp.pswp--open.entry-modal_wrapper.pswp--notouch.pswp--css_animation.pswp--svg.pswp--visible.pswp--animated-in.pswp--has_mouse {
display: none;
}
div#privy-widget {
display: none;
}
body.template-index.no-overlap-header {
overflow: visible !important;
}

If you require any further information, feel free to contact me.

Best regards,

I guess you can find and turn off default popup of your theme from Sale channels > Online store > Themes > Customize > Theme Settings

@harivishwakarma hi, thanks for your reply. i can’t findbase.css in the assets section.

@harivishwakarma hey thanks! i find another solution

@Dan-From-Ryviu thanks!