Last active
January 12, 2019 07:50
-
-
Save tiborp/8abbef0eed0cb0e1594d675a167884ab to your computer and use it in GitHub Desktop.
Show ZIP before city in GravityForms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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