Last active
November 23, 2017 14:40
-
-
Save bavington/4761a4e3fdd2e4cc667f2c38f7477b92 to your computer and use it in GitHub Desktop.
Contact Form 7 (CF7) Event Handler GTM Data Layer Event Push
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener( 'wpcf7mailsent', function( event ) { | |
dataLayer.push({'event': 'cf7.contact-page.mailsent', 'cf7.formID': event.detail.contactFormId}); | |
}, false ); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Update: The Event Handler has now been modified to carry a second variable (CF7 Form ID), in order to track events for multiple forms.