0
How to change symbol . in , for PRICE field. In version for joomla 2.5.
Please send me instructions.
Like this: 30,00 EUR and not 30.00 EUR
or
1.200,00 EUR and not this 1,200.00 EUR
I WANT THIS TYPE OF PRICE VIEW:
1.200,00 EUR
Thank you
Please send me instructions.
Like this: 30,00 EUR and not 30.00 EUR
or
1.200,00 EUR and not this 1,200.00 EUR
I WANT THIS TYPE OF PRICE VIEW:
1.200,00 EUR
Thank you
Responses (1)
-
Accepted Answer
0hello Andrej,
this can be easily changed in the /components/com_invoices/helpers/helpers.php file
if you're ok with modifying this file, just do this: in line 30, you will see this:
return $before . number_format($number, 2) . $after ;
you have to replace it for:
return $before . number_format($number, 2, ",", ".") . $after ;
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »