- Posts: 13237
- Thank you received: 1727
All popular questions related to OS Property will be posted here
Change price format in Price slider
- Dang Thuc Dam
-
Topic Author
- Offline
- Administrator
-
Less
More
9 years 10 months ago #70374
by Dang Thuc Dam
Change price format in Price slider was created by Dang Thuc Dam
Hi,
To change the money format in Price slider from 1,000,000.00 to 1.000.000,00. Please follow these steps
1. Open file:
components > com_osproperty > helpers > helper.php
Find
and change to
Find
and change to
Find
and change to
Good luck
Dam
To change the money format in Price slider from 1,000,000.00 to 1.000.000,00. Please follow these steps
1. Open file:
components > com_osproperty > helpers > helper.php
Find
Code:
price_from = price_from.formatMoney(0, ',', '.');
price_to = price_to.formatMoney(0, ',', '.');
Code:
price_from = price_from.formatMoney(0, '.', ',');
price_to = price_to.formatMoney(0, '.', ',');
Find
Code:
echo number_format($min_price, 0, '', ',');
Code:
echo number_format($min_price, 0, '', '.');
Find
Code:
echo number_format($max_price, 0, '', ',');
Code:
echo number_format($max_price, 0, '', '.');
Good luck
Dam
Moderators: Dang Thuc Dam, Nguyen Phu Quan
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.