All popular questions related to OS Property will be posted here

Change price format in Price slider

  • Dang Thuc Dam
  • Topic Author
  • Offline
  • Administrator
  • Administrator
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
Code:
price_from = price_from.formatMoney(0, ',', '.'); price_to = price_to.formatMoney(0, ',', '.');
and change to
Code:
price_from = price_from.formatMoney(0, '.', ','); price_to = price_to.formatMoney(0, '.', ',');

Find
Code:
echo number_format($min_price, 0, '', ',');
and change to
Code:
echo number_format($min_price, 0, '', '.');

Find
Code:
echo number_format($max_price, 0, '', ',');
and change to
Code:
echo number_format($max_price, 0, '', '.');

Good luck
Dam

Please Log in or Create an account to join the conversation.

Moderators: Dang Thuc DamNguyen Phu Quan