forminator_form_after_handle_submit not working
-
Hi,
I am trying to run a function after form submission, if the response is ‘success’.
So I tried for example redirecting home just to check if the function is working – and it’s not.please help me?
the code:add_action( 'forminator_form_after_handle_submit', 'save_fielder_details', 10, 2); function save_fielder_details($form_id, $response) { if( $response['success'] ){ wp_safe_redirect( home_url() ); } }
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘forminator_form_after_handle_submit not working’ is closed to new replies.