Hi Xavier, yet again!!
Thanks for the reply. I have found the file you refer to. I'm not good with php, however, I notice a line at the top of the page that refers to the invoice and order number. However, it has an else statement so my understanding is that as it stands, it will show either, not both.
Would you be kind enough to advise how I would go about changing this to show both by default please
<div class="header hikashop_header_title">
<h1>
<?php if($this->invoice_type=='order'){
echo JText::_('HIKASHOP_ORDER').':'.$this->element->order_number;
}else{
echo JText::_('INVOICE').':'.$this->element->order_invoice_number;
} ?>
</h1>
</div>
and
<div id="hikashop_order_right_part" class="hikashop_order_right_part">
<?php echo JText::_('DATE').': '.hikashop_getDate($this->element->order_created,'%d %B %Y ');?><br/>
<?php if($this->invoice_type=='order'){
echo JText::_('HIKASHOP_ORDER');
echo ': '.@$this->element->order_number;
}else{
echo JText::_(strtoupper($this->invoice_type));
echo ': '.@$this->element->order_invoice_number;
}
?>
</div>
Thanks again Xavier