Description
This filter is executed when creating the address street 2 field and can be used to modify the "Street 2" label
Usage
Applies to all forms
<?php
add_filter("gform_address_street2", "change_address_street2", 10, 2);
?>
Applies to a specific form. In this case, form Id 5
<?php
add_filter("gform_address_street2_5", "change_address_street2", 10, 2);
?>
Parameters
$label
- (string) The label to be filtered.
$form_id
- (int) The current form's id.
Examples
This example changes the default address street 2 label;
<?php
add_filter("gform_address_street2", "change_address_street2", 10, 2);
function change_address_street2($label, $form_id){
return "Address Street 2";
}
?>
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in common.php and js.php