Description
Use this filter to change the default "Other" placeholder text on Radio Button fields.
Usage
<?php
add_filter("gform_other_choice_value", "set_placeholder");
?>
Parameters
$placeholder
- (string) The placeholder to be filtered. Defaults to "Other".
Examples
This example changes the placeholder text to "Enter your own value".
<?php
add_filter("gform_other_choice_value", "set_placeholder");
function set_placeholder($placeholder){
return "Enter your own value";
}
?>
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in common.php