Reputation: 377
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
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