Contact Form 7 Web Analytics Plugin

⬅️ Back to all plugins  

Contact Form 7 is a Wordpress plugin for managing contact forms on your site. Wouldn't it be great if you could track the form submissions? Thankfully this plugin provides a javascript hook so we can log the submission as an action and/or a goal.

Copy the code into the Additional Settings field at the bottom of the contact form management page of the plugin.


Log as an action: document.addEventListener( 'wpcf7submit', function( e ) {
  clicky.log('#contact-form', 'Contact Form');
}, false );

Log as a goal: document.addEventListener( 'wpcf7submit', function( e ) {
  clicky.goal('Contact Form');
}, false );

Log as an action and a goal: document.addEventListener( 'wpcf7submit', function( e ) {
  clicky.log('#contact-form', 'Contact Form');
  clicky.goal('Contact Form');
}, false );



Looking for a fresh web analytics experience?

📢 Register for Clicky now and use the plugin/instructions on this page to track your website!