Description #
This filter returns the input labels for the entries on the entries page.
apply_filters('fluentform/step_string', $stepText);
Usage #
add_filter('fluentform/step_string', function($stepText) {
return "Step " . $stepText;
}, 10, 1);
Parameters #
- $stepText (string)
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 -> getEditorShortcodes()