Skip to content

Instantly share code, notes, and snippets.

@tiborp
Last active January 12, 2019 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiborp/8abbef0eed0cb0e1594d675a167884ab to your computer and use it in GitHub Desktop.
Save tiborp/8abbef0eed0cb0e1594d675a167884ab to your computer and use it in GitHub Desktop.
Show ZIP before city in GravityForms
<?php
/**
* Custom hooks & filters for GravityForms
*/
namespace ProjectName;
/**
* Show zip-field before city field
* @link https://docs.gravityforms.com/gform_address_display_format/#examples
*
*/
function address_format($format) {
return 'zip_before_city';
}
add_filter('gform_address_display_format', __NAMESPACE__ . '\address_format');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment