Description
This filter is executed when creating the address zip field and can be used to modify the “Zip” label.
Usage
Applies to all forms
1 | add_filter( 'gform_address_zip' , 'change_address_zip' , 10, 2 ); |
Applies to a specific form. In this case, form Id 5
1 | add_filter( 'gform_address_zip_5' , 'change_address_zip' , 10, 2 ); |
Parameters
Examples
This example changes the default address zip label:
1 2 3 4 | add_filter( 'gform_address_zip' , 'change_address_zip' , 10, 2 ); function change_address_zip( $label , $form_id ) { return "Address Zip" ; } |
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in js.php and GF_Field_Address::get_field_input() in includes/fields/class-gf-field-address.php.