Contact Form 7 + Google Analytics — a practical guide to Contact Form 7 Google Analytics with clear examples you can reuse in real projects.
Contact Form 7 Tutorial Series (66/100). Prefer one article? Read the complete Contact Form 7 tutorial.
Short description
Track form_id and conversion events in dataLayer/gtag.
GA4 event sketch
document.addEventListener('wpcf7mailsent', function (event) {
gtag('event', 'generate_lead', {
form_id: event.detail.contactFormId
});
});