-- HikaShop version -- : 2.6.1
Hi,
In the Invoice / Delivery Note admin template file the section that prints out the shipping address, how can the order of the fields be managed?
if(empty($this->element->override_shipping_address)) {
$class = hikashop_get('class.address');
echo $class->displayAddress($this->element->fields,$this->element->shipping_address,'order');
} else {
echo $this->element->override_shipping_address;
}
How can this order be managed?
i.e. Lets say you wanted to move Post Code field to the last field. for example.
Many thanks.