Table of Contents
Description #
This filter is available just before rendering the form. You can use this filter to modify the form object.
apply_filters('fluentform_smartcode_group_'.$group, $property, self::getInstance());
Usage #
The following would apply to all forms:
add_filter('fluentform_smartcode_group_'.$group, function($property){
//do your stuff
return $property;
}, 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 app/Services/FormBuilder/ShortCodeParser.php