Last active
May 27, 2024 22:29
-
-
Save webtoffee-git/a56f1fdc40795ebe37d320bd1720c849 to your computer and use it in GitHub Desktop.
Alter address format to suit European standards in WooCommerce PDF Invoice,Packing Slip,Delivery Note plugin
This file contains 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 //do not copy this line | |
add_filter('wf_pklist_alter_shipping_address','wf_pklist_alter_address_fn',10,3); | |
add_filter('wf_pklist_alter_billing_address','wf_pklist_alter_address_fn',10,3); | |
add_filter('wf_pklist_alter_shipping_from_address','wf_pklist_alter_address_fn',10,3); | |
function wf_pklist_alter_address_fn($address, $template_type, $order) | |
{ | |
$arr=array($address['postcode'], $address['city']); | |
$address['city']=implode( ", ",$arr); | |
unset($address['postcode']); | |
return $address; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment