You are here:  » Changing price display

Support Forum



Changing price display

Submitted by morgana on Sun, 2008-10-19 16:45 in

The prices are displayed like this:

euro 19.99

but I want it to display like this

euro 19,99

(changing the "." to ",")

How can I do this?

Submitted by support on Mon, 2008-10-20 09:44

Hi,

This can be done quite easily with a str_replace() call wherever the price is displayed. To do this, use your text editor's Search & Replace feature to change the following sections of these files:

html/searchresults.php

$product["minPrice"] replace with str_replace(".",",",$product["minPrice"])

$product["price"] replace with str_replace(".",",",$product["price"])

html/product.php

$mainProduct["price"] replace with str_replace(".",",",$mainProduct["price"])

html/prices.php

$product["price"] replace with str_replace(".",",",$product["price"])

Cheers,
David.

Submitted by morgana on Mon, 2008-10-20 16:48

Thank you. It works.