Hi folks, good morning.
I'm trying to show the prices and on the fields the price and currency symbol as:
US$ 100.00
R$ 100,00
instead of as default:
100.00 US$
100,00 R$
I tried to change in the index.php the line below from/to:
FROM:
,'currency_format' => '{NUMBER} {CURRENCY}'
TO:
,'currency_format' => '{CURRENCY} {NUMBER}'
But didn't solve. By checking the code where it does the echo to print the price, I found the line:
<span class="price"><?php echo osc_item_formated_price(); ?></span>
But, as I'm not a PHP programmer, I have no idea where is this formated price built to change it/invert.
Any idea how do I get to place the currency symbol before the value as default?
Thanks and have a great Sunday.