-- HikaShop version -- : 2.6.3
Hi,
I'd like to show all orders in my shop main currency (Pounds) or better Pounds and the client selected currency.
I saw a thread here saying to chance a code in listings in the views which I did. But nothing happened. When I did a test order in PHP (Philippine Pesos) the back end only listed the order in Pesos. Pounds were not shown.
This was the code:
<td class="hikashop_order_total_value">
<?php echo $this->currencyHelper->format($row->order_full_price,$row->order_currency_id);?> (<?php echo $this->currencyHelper->format($this->currencyHelper->convertUniquePrice($row->order_full_price,$row->order_currency_id,hikashop_getCurrency()),hikashop_getCurrency());?>)
</td>
How can I set the orders backend listing to show Pounds on all orders in the list?
Thanks and regards