View Categories

fluentform/settings_module_{$module}

Description  #

This filter returns a response for the extra settings component.

apply_filters('fluentform/settings_module_'.$module, $component, $formId);

Usage   #

add_filter('fluentform/settings_module_'.$module, function ($component, $formId) {
    return $component;
}, 10, 2);

Parameters #

  • $component (array) Value
  • $formId (int) Form ID

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\Form\Settings\ExtraSettings -> getExtraSettingsComponent()