Greetings,
v15 template
Need to display prices like: x,xxx.xx (comma in the thousands position)
In all occurrences:
prices.php featured.php searchresults.php product.php
Thanks!
Hi,
Only one change needed - in includes/tapestry.php look for the following code at line 296;
$price = str_replace(".",$config_currencySeparator,$price);
...and REPLACE with:
$price = number_format($price,2,".",",");
Cheers, David. -- PriceTapestry.com
Hi David,
Works like a charm.
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi,
Only one change needed - in includes/tapestry.php look for the following code at line 296;
$price = str_replace(".",$config_currencySeparator,$price);
...and REPLACE with:
$price = number_format($price,2,".",",");
Cheers,
David.
--
PriceTapestry.com