Description #
This filter returns the input labels for the entries on the entries page.
apply_filters('fluentform/all_entries', $submissions),
Usage #
add_filter('fluentform/all_entries', function($submissions) {
return $submissions;
});
Parameters #
- $submissions (array) Submission Data
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentFormPro\src\classes\StepFormEntries -> getEntries()