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"])
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 withstr_replace(".",",",$product["minPrice"])
$product["price"]
replace withstr_replace(".",",",$product["price"])
html/product.php
$mainProduct["price"]
replace withstr_replace(".",",",$mainProduct["price"])
html/prices.php
$product["price"]
replace withstr_replace(".",",",$product["price"])
Cheers,
David.