PRICE format for 2.5 joomla version

Andrej
Andrej
Offline
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
Responses (1)
  • Accepted Answer

    Friday, May 31 2013, 10:43 AM - #Permalink
    0
    hello 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 ;
    The reply is currently minimized Show
Your Reply