Google Analytics

Track how your audience interacts with your embedded Q directly in Google Analytics. Qzzr sends events for views, starts, completions, form submissions, and more — so you can measure engagement alongside your other website analytics.

Set up Google Analytics

Here's a guide on setting up Google Analytics.

Enable Google Analytics

  1. In your Q, go to PUBLISH.
  2. Go to Tracking.
  3. Enable Google Analytics 4.
  4. If you have your own custom Objectname, enable Custom Google Analytics configuration and change the default from "gtag" to whatever you are using. Please make sure to only change this if you know what you are doing.
  5. If you only want to track certain events, open Custom event configuration and uncheck events that you do not want to track. The default setting is that all Qzzr events except "Send form data" are sent to Google Analytics.
  6. Click on SAVE.

This is the default event we send to Google Analytics if you are using Universal Analytics:

window.dataLayer

dataLayer.push({
    eventCategory: riddleEvent.category,
    eventAction: riddleEvent.action,
    eventName: riddleEvent.name
});

Note: If you are still using the old and outdated Google ga Tag for Analytics, please enable Google Universal Analytics (deprecated) tracking. This is the default event we send to Google Analytics if you are using the deprecated Google Universal Analytics:

window.ga

ga(
    "send",
    "event",
    [riddleEvent.category],
    [riddleEvent.action],
    [riddleEvent.name]
);