Hi,
First of all, thanks for a great component.
I need to change the Danish currency delimiter from . (period) to , (comma) and add a thousand separator.
At the moment the danish prices are shown as kr. 1000.00. But the correct way is kr. 1.000,00.
Hi Rita,
To change the money format, please follow these steps:
1. Open file:
root > administrator > components > com_osservicesbooking > helpers > helper.php
2. Find
$money .= number_format($amount,2,'.','')." ";
and change to
$money .= number_format($amount,2,',','.')." ";
Good luck
Dam