Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created August 6, 2020 11:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techjewel/6cb75bfebb2423346e371cda1c807744 to your computer and use it in GitHub Desktop.
Save techjewel/6cb75bfebb2423346e371cda1c807744 to your computer and use it in GitHub Desktop.
Track Events by Google Analytics for a form in Fluent Forms
gtag('event', 'ViewForm', {
'event_category': 'FluentForms',
'event_label': 'View Form',
'form_id': formId
});
$form.on('fluentform_submission_success', function() {
gtag('event', 'FormSubmission', {
'event_category': 'FluentForms',
'event_label': 'Form Submitted',
'form_id': formId
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment