Vignesh PV
Vignesh PV

Reputation: 377

How to implement Google Adwords Conversion track code with Contact Form 7?

How to integrate Adwords conversion code (Event snippet) in Wordpress Contact Form 7 plugin to track conversion?

Please suggest me a solution adwords experts…

Upvotes: 0

Views: 2448

Answers (1)

Sladix
Sladix

Reputation: 702

You can use the DOM Events created by WPCF7 to hook in and fire the conversion hit :

document.addEventListener( 'wpcf7mailsent', function( event ) {
   // The mail is now sent
   gtag_report_conversion();
}, false );

Google documentation from here

Upvotes: 3

Related Questions