Hello @boutdoorshq,
You can use the action hook to call the hf_form_success which when a form is submitted successfully, it contain $submission, $form parameters
You can try this:
add_action( 'hf_form_success', function( $submission, $form ) {
echo $submission-><form_field>;
});
Not tested but should work.
-
This reply was modified 5 years, 2 months ago by jekayode.