Hi guys, you helped me fix up an issue (http://bit.ly/faItEZ) a few months ago with re-naming the zip code field tag; just wanted to know if there was a similar filter I can use to modify the 'City' tag? (This one's purely cosmetic though!)
Hi guys, you helped me fix up an issue (http://bit.ly/faItEZ) a few months ago with re-naming the zip code field tag; just wanted to know if there was a similar filter I can use to modify the 'City' tag? (This one's purely cosmetic though!)
Here ya go! :)
add_filter("gform_address_city", "change_address_city", 10, 2);
function change_address_city($label, $form_id){
return "Boom City Boom";
}
"Boom, there it is!" ;)
Thanks!