• Resolved shilldiy

    (@shilldiy)


    Great plugin – simple and works beautifully!

    Is there a way to report how many times a popup has been triggered to appear over a period?

    For us, this gives a way of seeing how many saw the popup (which we don’t measure currently ) and how many completed the CTA on the popup itself (which we do).

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Contributor Philipp Stracker

    (@strackerphil-1)

    Hi @shilldiy

    Thanks for reaching out, and sorry for our delay here.

    You can either create a custom JS code to send a Google Analytics event every time a Popup is opened. There’s a code sample at the bottom of our Script Generator page:
    https://help.divimode.com/article/404-divi-areas-script-generator

    <script>(function() {
      DiviArea.addAction('show_area', function(area) {
        // Track Popup-View in Google Analytics.
        ga("send", "event", {
          eventCategory: "Popup",
          eventAction: "open",
          eventLabel: area.theId()
        });
      });
    })();</script>
    

    However, our premium plugin Divi Areas Pro comes with usage tracking features built into it. Here’s a screenshot from our website to give you a quick impression:

    usage tracking description

    In case you have any questions, please don’t hesitate to reach out again!

    Thanks, and happy Popup-ing ?? Philipp

Viewing 1 replies (of 1 total)
  • The topic ‘Count how many times popup has appeared?’ is closed to new replies.