Hi,
In List Order, the currency symbol changes when I select a currency in the virtuemart currency selector:
Currency selected USD = $20.00
Currency selected Euro = 20.00€
I want to fix this value to $20.00 even when a different currency is selected, because this value is saved from the total of the order and the payment currency is USD, currency rates exchanges are ok.
Virtuemart 2.0.20b
Joomla 2.5.9
I found this line that display the order total
<?php echo $this->currency->priceDisplay($row->order_total ,$this->currency ); ?>
How can I fix the currency symbol to '$' in this code?.
thank you.