0
How to change symbol . in , for PRICE field.
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
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
0THIS WORKS FOR ME. THANK YOU :cheer:
--------------------------------------
hello!
you need to change a PHP line for this. open file /components/com_invoices/helpers/helpers.php and on line 18 you must replace this:
return $before . $return_before . number_format(abs($number), 2) . $return_after . $after ;
for this:
return $before . $return_before . number_format(abs($number), 2, ",", ".") . $return_after . $after ;
--
Germinal Camps
Chief Software Engineer
Joomla Finances
http://www.joomlafinances.com
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 »