PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Filters for Field Names

  1. 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!)

    Posted 13 years ago on Tuesday January 25, 2011 | Permalink
  2. Here ya go! :)

    add_filter("gform_address_city", "change_address_city", 10, 2);
    function change_address_city($label, $form_id){
        return "Boom City Boom";
    }
    Posted 13 years ago on Tuesday January 25, 2011 | Permalink
  3. "Boom, there it is!" ;)

    Thanks!

    Posted 13 years ago on Wednesday January 26, 2011 | Permalink