Description #
This filter is available before loading fluent form public style. You can use this filter to stop loading the default public CSS.
apply_filters('fluentform/load_default_public', true, $form)
Usage #
The following would apply to all forms:
add_filter('fluentform/load_default_public', function($status, $form){
return $status;
}, 10, 2);
Parameters #
- $form (object) The $form Object
- $status (boolean) Status
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)