Bel
(@belimperial)
Hi @gcweb
Thank you for reaching out.
We think using the cookie option on each Time Delay/ Auto Open will give you a function not to display the popup after it closes. Here’s what the trigger will look like:
https://share.getcloudapp.com/mXuJQwv1
Cookies control the repeated display of the popup. To learn more, please refer to this link:
‘Cookies’ option settings
Could you give it a try, and let us know how it goes?
Thanks!
Hey @gcweb,
Just a thought.
In combination with cookies as @belimperial mentioned, you can write custom code to:
1) Start “the clock” on the second popup when the first popup closes.
2) Start “the clock” on the third popup when the second popup closes.
Here’s a jQuery example for the first/second popup sequence.
$('#pum-123') // First popup
.on('pumAfterClose', function () {
setTimeout(function () {
PUM.open(456); // Second popup
}, 30000); // 30 Seconds
});
This will only work if:
1) The first popup closes (to start the chain of events).
2) The visitor stays on the page long enough to see the other 2.
Thread Starter
gcweb
(@gcweb)
Awesome, thanks for that! I’ll give it a test.
Hello @gcweb,
On behalf of my colleagues, you are most welcome! 😊
By the way, if it works for you then we would very much appreciate it if you could quickly rate the plugin, just to help us spread the word.
Have a great day!