Description
Filter the display value for an addon. Useful for changing the format of dates and more.
Usage
add_filter( 'gspc_addon_display_value', 'my_custom_function' );
Parameters
display_value string
The display value for the addon.
field \GF_Field
The current field.
entry \GFEntry
The current entry.
form \GFForm
The current form.
Examples
Change the formatting of date fields from MM/DD/YY to Month Day, Year.
add_filter( 'gspc_addon_display_value', function( $display_value, $field, $entry, $form ) {
if ( $field->type === 'date' ) {
$display_value = date_i18n( 'F j, Y', strtotime( $display_value ) );
}
return $display_value;
}, 10, 4 );
Since
This filter is available since Gravity Shop Product Configurator 1.0-beta-1.