Guest User

Untitled

a guest
Jul 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. [contact-form-7 id="42" title="Test Form"]
  2.  
  3. add_action( 'wp_footer', 'mycustom_wp_footer' );
  4.  
  5. function mycustom_wp_footer() {
  6. ?>
  7. <script type="text/javascript">
  8. document.addEventListener( 'wpcf7mailsent', function( event ) {
  9. //ga( 'send', 'event', 'Contact Form', 'submit' );
  10. if ( '42' == event.detail.contactFormId ) { // Change 123 to the ID of the form
  11. jQuery('#modalSuccess').modal('show'); //this is the bootstrap modal popup id
  12. }
  13. }, false );
  14. </script>
  15. <?php
  16. }
Add Comment
Please, Sign In to add comment