Created
June 14, 2022 16:22
-
-
Save dustinleer/2933a6b546c162cd7e0b3023aba0970d to your computer and use it in GitHub Desktop.
Contact Form 7 Submission Redirect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wp_footer', 'mycustom_wp_footer' ); | |
function mycustom_wp_footer() { | |
$site_url = get_site_url(); | |
?> | |
<script> | |
document.addEventListener( 'wpcf7mailsent', function( event ) { | |
location = '<?php echo $site_url; ?>/landing-thank-you/'; | |
}, false ); | |
</script> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment