Skip to content

Instantly share code, notes, and snippets.

@adamlaki
Created March 12, 2019 19:12
Show Gist options
  • Save adamlaki/6b49f8c7ce7578b2933c13b7d787983c to your computer and use it in GitHub Desktop.
Save adamlaki/6b49f8c7ce7578b2933c13b7d787983c to your computer and use it in GitHub Desktop.
Contact Form 7 Thank You Page Redirects
document.addEventListener( 'wpcf7mailsent', function( event ) {
if ( '101' == event.detail.contactFormId ) {
location = 'https://www.example.com/thank-you-page-one/';
} else {
location = 'https://www.example.com/thank-you-page-two/';
}
}, false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment