How To Add Google Analytics OnClick To Wordpress Contact Form 7 Submit Button
1 answer
Using an event analyzer trigger when the submit button is clicked,
document.addEventListener( 'wpcf7mailsent', function( event ) {
ga( 'send', 'event', 'Contact Form', 'submit' );
}, false );
REF: https://contactform7.com/tracking-form-submissions-with-google-analytics/
+3
source to share