Skip to content

Instantly share code, notes, and snippets.

@KustomDeveloper
Created January 4, 2019 17:24
Show Gist options
  • Select an option

  • Save KustomDeveloper/7dd0f40176c03b098343b37e4672965e to your computer and use it in GitHub Desktop.

Select an option

Save KustomDeveloper/7dd0f40176c03b098343b37e4672965e to your computer and use it in GitHub Desktop.
Redirect Contact Form 7
/*
* Redirect Contact Form 7 Submissions
*/
function redirect_cf7() { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7mailsent', function( event ) {
if ( '1438' == event.detail.contactFormId ) { // Sends sumissions on form 947 to the first thank you page
location = 'https://www.ivf4everyone.com/thank-you-feedback/';
} else { // Sends submissions on all unaccounted for forms to the third thank you page
location = 'https://www.ivf4everyone.com/thank-you';
}
}, false );
</script>
<?php
}
add_action( 'wp_footer', 'redirect_cf7' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment