View Categories

fluentform/single_response_data

Description  #

This filter returns single entry data. You can use this to modify how the data will be shown.

apply_filters('fluentform/single_response_data', $submission, $formId);

Usage   #

add_filter('fluentform/single_response_data', function($submission , $formId){
   
  //do your stuff
  return $submission;
}, 10, 2);

Parameters #

  • $submission (array) Submission Data
  • $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 FluentFormPro\src\classes\StepFormEntries -> getstepFormEntry()