Skip to content

Instantly share code, notes, and snippets.

@biuroreklama
Created January 2, 2018 19:22
Show Gist options
  • Select an option

  • Save biuroreklama/bc9b86f8573cae82ddbacc75d1a359cb to your computer and use it in GitHub Desktop.

Select an option

Save biuroreklama/bc9b86f8573cae82ddbacc75d1a359cb to your computer and use it in GitHub Desktop.
Stylowanie adresu w Woocommerce
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