Description #
This action runs after the form rendering is completed. If you need to do anything in the background you can use this action.
/*
* Source Action
*/
do_action('fluentform/after_form_render', $form);
Usage #
add_action('fluentform/after_form_render', 'custom_function', 10, 1);
function custom_function($form)
{
// Do your stuff here
}
Parameters #
- $form (object) Form Object
Source Code #
This hook is located in fluentform/app/Services/Form/FormService.php