Skip to content

Instantly share code, notes, and snippets.

@jarrodagims
Created December 7, 2018 18:59
Show Gist options
  • Save jarrodagims/b7cc256ea2c1d1a1fb65838f0a78ecb3 to your computer and use it in GitHub Desktop.
Save jarrodagims/b7cc256ea2c1d1a1fb65838f0a78ecb3 to your computer and use it in GitHub Desktop.
Redirect to thank you
//redirect to thank you page
function mycustom_wp_footer()
{
echo '<script type="text/javascript">';
echo 'document.addEventListener( \'wpcf7mailsent\', function( event ) {';
echo 'window.dataLayer.push({
"event" : "cf7submission",
"formId" : event.detail.contactFormId,
"response" : event.detail.inputs
});';
echo 'location = "' . SITEURL . '/thank-you/";';
echo '}, false );';
echo '</script>';
}
add_action( 'wp_footer', 'mycustom_wp_footer' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment