I’m trying to open a popup after 2 minutes but the popup opens immediately. Its the staging so no caching involved here. I would like to have an animation for it. Is there something I’missing or a bug?
Actually in the end I would like to archive to show a popup after 3 page visits and 2 minutes page view, but its seems already that the delay is an issue.
To open the popup only after a certain number of page views, you would have to record the number of page visits somehow. I’m not a Javascript expert, but this seems to be a first approach (you would probably have to assign the page ID to the counter so that the visits to each individual page are counted): javascript - Detect re-visitors using LocalStorage - Stack Overflow
Then, you can use the counter value within the interaction condition.