caldera_forms_submit_pre_process_end

Caldera Forms -- Responsive, drag and drop form builder.

This action is called after all pre-processors have run.

It is passed 3 parameters:

  • $form – the form config array
  • $referrer – the referring url structure
  • $process_id – the unique id given to the form submission

do_action('caldera_forms_submit_pre_process_end', $form, $referrer, $process_id);

Where Does This Code Go?

When using WordPress hooks to customize Caldera Forms or other plugins you should not modify the plugin files, or you will lose your changes when you update the plugin. Instead you should create a small plugin to hold the custom code. It's easy, learn how here.

Technically you can add the custom code to your theme's functions.php, but then you will not be able to change your theme and keep these customizations.

Learn More