Webflow sync, pageviews & more.
NEW

How can I track events in my Google Analytics account using Webflow?

TL;DR
  • Add Google Analytics to Webflow by pasting the Measurement ID in Project Settings > Integrations.
  • Set up Google Tag Manager (GTM) by adding the GTM container snippet in Webflow's Custom Code section.
  • In GTM, create a GA4 Event Tag, configure the event name, set a trigger, then save and publish.
  • Alternatively, use custom JavaScript with the gtag function in Webflow’s Custom Code section to track events.
  • Publish your site and test event tracking in Google Analytics Real-Time reports.

To track events in Google Analytics using Webflow, you need to set up event tracking in Google Tag Manager (GTM) or by using custom JavaScript within Webflow. Here’s how:

1. Add Google Analytics to Webflow

  • Go to Project Settings in Webflow.
  • Navigate to the Integrations tab.
  • Find the Google Analytics section and paste your Measurement ID (GA4) or Tracking ID (UA-XXXXXX-X).
  • Save changes and publish your site.
  • Sign in to Google Tag Manager (GTM) and create a new container for your Webflow site.
  • In Webflow, add the GTM container snippet inside Custom Code under the Project Settings > Custom Code section.
  • Save & Publish your Webflow site.

3. Track Events Using GTM

  • In Google Tag Manager, create a New Tag.
  • Choose Tag Type: Select Google Analytics: GA4 Event.
  • Configure Event Name: Enter an appropriate event name (e.g., "button_click" or "form_submission").
  • Set the Trigger: Select an appropriate trigger like Click – All Elements or a form submission trigger.
  • Save and Publish the GTM container.

4. Track Events Using Custom JavaScript (Alternative Method)

  • If you're not using GTM, add custom JavaScript inside Webflow's Custom Code section.

  • Use Google Analytics’s gtag function for event tracking. Example:

    ```js
    document.querySelector('.my-button').addEventListener('click', function() {
    gtag('event', 'button_click', {
    event_category: 'Buttons',
    event_label: 'Signup Button'
    });
    });
    ```

  • Replace '.my-button' with your actual button class from Webflow.

  • Publish your site and test event tracking in Google Analytics under Events in the Realtime report.

Summary

To track Google Analytics events in Webflow, either integrate Google Tag Manager and configure GA4 events, or use custom JavaScript in Webflow's Custom Code section. Test the events in GA's Real-Time reports to verify they are being recorded.

Rate this answer

Other Webflow Questions