Last active
April 25, 2018 15:38
-
-
Save AnkanSoul/9bba52a51d006cd3a731c5c1302cf8bb to your computer and use it in GitHub Desktop.
Contact form after submit redirect for all form
This file contains hidden or 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
| ========================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