View Categories

fluentform/disabled_analytics

Description  #

This filter disables the form analytics. Using this filter you toggle the analytics.

apply_filters('fluentform/disabled_analytics', false);

Usage   #

add_filter('fluentform/disabled_analytics', function($status) {
    return $status;
}, 10, 1);

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)