Created
January 2, 2018 19:22
-
-
Save biuroreklama/bc9b86f8573cae82ddbacc75d1a359cb to your computer and use it in GitHub Desktop.
Stylowanie adresu w Woocommerce
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
| add_filter( 'woocommerce_localisation_address_formats', 'woocommerce_custom_address_format', 20 ); | |
| function woocommerce_custom_address_format( $formats ) { | |
| $formats[ 'US' ] = "{company}\n{name}\n{address_1}\n{address_2}\n{city}, {state_code} {postcode}\n{country}"; | |
| return $formats; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment