Hello,
We are currently offering two different shipping methods; UPS or Manual/House Delivery. We would like the Shipping Methods to display on the Shipping Invoice. I understand that the oldinvoice.php file can be modified, but I'm not really that proficient in PHP and was hoping to get some pointers. Or, to find someone who would be interested in working on those modifications for, or with us.
I can see that both invoice.php and oldinvoice.php have code to only print the Shipping Method line when the user choices the regular invoice and not the Shipping Invoice with this code:
<?php
if($this->invoice_type=='full'){
echo JText::_('INVOICE');
}else{
echo JText::_('SHIPPING_INVOICE');
}
?>
and this:
<?php if(!empty($this->shipping)){
echo JText::_('HIKASHOP_SHIPPING_METHOD').' : '.$this->shipping->getName($this->order->order_shipping_method,$this->order->order_shipping_id).'<br/>';
}?>
I'm not sure how to modify that to print the Shipping Method in the Shipping Invoice. Can anyone help?
Thanks!