I have search in all forum before this post, but I think that one of developer team of Quick Cart would have respond to the currency problem because there is much people asking for this.
We do what we can, but we aren't the programmers of Quick Cart and we do not know the code for modifying it.
In my personal case, I need work with Euro currency, and I need that the prices can be present in xxx.xxx,xx format..., ok..., this can be possible modifing the 'tPrice' function in creo/other.php file like this:
function tPrice( $fPrice ){ return number_format($fPrice,2,',','.'); #return sprintf( '%01.2f', $fPrice ); // This is the old source code line. } // end function tPrice
And when I add new items, all the new prices is show in Euro format currency very well, but when shows the details of basket, the price "1.432,58" is recognized by "1.43". This occurrs because Quick Cart it understands that from the point come the decimals and thus is impossible to work in Euro currency.
Please gentlemen programmers, what is necessary to modify so that this does not happen and we pruned to work well with euro currency?.
Other question:
Can I install plugins versions previous to the 2.1 of QuickCart?.