• Resolved gcweb

    (@gcweb)


    Hi,

    I have multiple triggers with the Time Delay / Auto Open option, for example;

    Delay: 500
    Delay: 30000
    Delay: 60000

    Now these work for the total time duration on the page. Is there a way to change that so that only once the first trigger has been closed it starts the timer for the next trigger and so forth?

    Thanks in advance!

Viewing 4 replies - 1 through 4 (of 4 total)
  • 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!

    Plugin Support mark l chaves

    (@mlchaves)

    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.

    Maria T

    (@mariatogonon)

    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!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Time Delay / Auto Open with multiple triggers’ is closed to new replies.