I’ve created a woocommerce quick view popup on this test site here and for some reason after closing the popup it’s still in the dom invisible but on top of other elements disturbing the clicking behaviour of the user.
I’m describing the problem in this video .
Is this some sort of bug or I’m I doing something wrong with the popup set up?
Binu
August 24, 2025, 12:31pm
2
The Popup Builder is a very flexible, fully customizable solution to show popups anywhere on your website based on Interactions. A popup in Bricks is just a template. To create our first popup, let’s add a new template and select the new template...
Hey bud
Did you try adding the Template Element for the popup? (Sorry if you already did, I just couldn’t spot it in your setup).
Also, instead of attaching the interaction to an ID , try binding it to a class .
Not 100% sure it’ll fix the issue, but definitely worth giving a try.
1 Like
Hi Binu, thanks for the comment. I tried both of your suggestions but it didn’t solve the problem.
I noticed that when the popup is active, popup classes are like this:
When I close the popup, the class .hide
is added
So I added this CSS which fixed it:
.hide {
display: none;
}
I don’t have a global class .hide
.
Should the bricks theme have this CSS declaration by default added?