Hello,
I need to add one line and a picture into the invoice.
I tried to edit order/invoice.php in Display->Views
<div style="float:right;width:100px;padding-top:20px">
<?php echo JText::_('DATE').': '.hikashop_getDate($this->element->order_created,'%d %B %Y ');?><br/>
<?php echo JText::_('INVOICE').': '.@$this->element->order_number;?>
to:
<div style="float:right;width:200px;padding-top:20px">
<?php echo JText::_('DATE').': '.hikashop_getDate($this->element->order_created,'%d %B %Y ');?><br/>
<?php echo JText::_('DATE_TAX').': '.hikashop_getDate($this->element->order_created,'%d %B %Y ');?><br/>
<?php echo JText::_('INVOICE').': '.@$this->element->order_number;?>
and add DATE_VAT="VAT date" into the language file but nothing changed in the invoice. How can I add such line? It should show the same date as the date line originally shown in the invoice, but I need to have the date line one more time including text with VAT date (it is by law in my country) - like: VAT Date: 6.6.2012.
I also need to add a picture with signature to the bottom line of the invoice. How can I do this?
Thanks
Vaclav