Description #
This filter is available just before rendering the form. You can use this filter to modify the form object.
apply_filters('fluentform/rendering_form', $form);
Usage #
The following would apply to all forms:
add_filter('fluentform/rendering_form', function($form){
return $form;
}, 10, 1);
Parameters #
- $form (Object) The $form Object
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\app\Modules\Component\Component -> renderForm($atts)