You are here:  » How to add a comma to displayed prices


How to add a comma to displayed prices

Submitted by Convergence on Mon, 2016-07-25 23:28 in

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!

Submitted by support on Tue, 2016-07-26 08:40

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

Submitted by Convergence on Wed, 2016-07-27 04:08

Hi David,

Thanks!

Works like a charm.