gravityflow_inbox_field_value

The gravityflow_inbox_field_value filter allows customization of field/column values within the inbox list view. It is similar in concept to  gform_entries_field_value which gets applied in many other locations.

Parameters

Parameter Type Definition
$value Mixed The current value to display
$form_id int The current form ID.
$field_id int The current field ID.
$entry Array The current entry array.

Examples

add_filter( 'gravityflow_inbox_field_value', 'jo_inbox_capitalize_example', 10, 4 );
function jo_inbox_capitalize_example( $value, $form_id, $field_id, $entry) {
   if ( $form_id = '5' && $field_id == '27') {
      return strtoupper( $value );
   }<br>   return $value;
}

Placement

This code should be placed in the functions.php file of your active theme or in a custom functions plugin.