Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnkanSoul/9bba52a51d006cd3a731c5c1302cf8bb to your computer and use it in GitHub Desktop.

Select an option

Save AnkanSoul/9bba52a51d006cd3a731c5c1302cf8bb to your computer and use it in GitHub Desktop.
Contact form after submit redirect for all form
========================Contact form after submit redirect for all form===========
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
location = 'https://wp.goigi.me/readysetboom/wp-admin/upload.php?item=146';
}, false );
</script>
========================================================================
<?php
//Redirect to Thank you Page if page name is "contact"
if ( is_page('home')) {
?>
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
location = 'https://wp.goigi.me/readysetboom/wp-admin/upload.php?item=146';
}, false );
</script>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment