-- HikaShop version -- : 2.3.3
-- Joomla version -- : 3.3.6
Hi,
I've edited the order / invoice.php file for backend template to display a new variable in the invoice:
I've added this:
<tr>
<td colspan="<?php echo $colspan; ?>">
</td>
<td class="key">
<label>
<?php echo JText::_( 'HIKASHOP_IMPONIBILE' ); ?>
</label>
</td>
<td>
<?php echo $this->currencyHelper->format($this->order->order_full_price-$taxes,$this->order->order_currency_id); ?>
</td>
</tr>
As you can see, I've created the language variable HIKASHOP_IMPONIBILE that I've translated into the language override.
The problem is that this variable is not translated. I've tryed also a test changing HIKASHOP_IMPONIBILE with the variable VAT (that is a default variable of hikashop, but even in this case in the invice output it's shown as HIKASHOP_IMPONIBILE (or VAT in my other test) and so no variables are translated.
At this point I suppose that something is wrong with my code?
Thanks in advice.