To do this open your functions.php file and paste the following code:
|
1 2 3 4 5 6 7 8 9 10 |
<?php add_filter( 'gform_after_submission', 'sw_gf_thanks_message', 10, 2 ); function sw_gf_thanks_message( $thx_message ) { add_action( 'wp_footer', 'sw_gf_thx_msg' ); } function sw_gf_thx_msg() { ?> <script type="text/javascript"> alert( "Thank you for your commitment. We will contact you as soon as possible!" ); </script> <?php } ?> |
You can change the pop up message style by modifying what is inside the sw_gf_thx_msg() function.