gpeb_display_value
Description
Filter the value to be displayed with Entry Blocks.
Usage
Apply to all fields for all forms.
add_filter( 'gpeb_display_value', 'my_custom_function' );
Apply to all fields for a specific form.
add_filter( 'gpeb_display_value_FORMID', 'my_custom_function' );
Apply to a specific field on a specific form.
add_filter( 'gpeb_display_value_FORMID_FIELDID', 'my_custom_function' );
Apply to all fields of a specific input type for all forms.
add_filter( 'gpeb_INPUTTYPE_display_value', 'my_custom_function' );
Apply to all fields of a specific input type for a specific form.
add_filter( 'gpeb_INPUTTYPE_display_value_FORMID', 'my_custom_function' );
Parameters
value mixed
The field value to be displayed.
field \GF_Field
The current field.
form array
The current form.
entry array
The current entry.
Since
This filter is available since Gravity Forms Entry Blocks 1.0-alpha-1.3.