This sounds like the situation where "," is replaced with "." to handle currencies which use "," as the decimal place. To fix this, look for the following code on line 36 of includes/tapestry.php:
$price = str_replace(",",".",$price);
...and REPLACE with:
$price = str_replace(",","",$price);
...and then after the next import prices should be imported correctly.
Hi there,
This sounds like the situation where "," is replaced with "." to handle currencies which use "," as the decimal place. To fix this, look for the following code on line 36 of includes/tapestry.php:
$price = str_replace(",",".",$price);
...and REPLACE with:
$price = str_replace(",","",$price);
...and then after the next import prices should be imported correctly.
Cheers,
David.