Support » Plugin: HTML Forms » Make Submitted Forms visible on website

  • Resolved boutdoorshq

    (@boutdoorshq)


    Is there a way to make my forms appear on my website after being submit.

    I seen the Raw code but that does not work.

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • 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 4 years, 6 months ago by jekayode.
Viewing 1 replies (of 1 total)
  • The topic ‘Make Submitted Forms visible on website’ is closed to new replies.