Hi treewood thank you to guide me with solfing the problem but i had try by changing the sprintf( '%01.2f', $fPrice ); to sprintf( '%01.3f', $fPrice ); but don't work i really not a expert in php i don't know wat to change can you please help me
it have to change from 250.00 to 250.000
thanks
wandry
2004-12-06 19:48
got it working already thanks
Bengan
2005-05-18 00:45
I've changed line 40 in core/other.php to return sprintf( '%01.0f', $fPrice ); for the result of no ending zero's at all. Niceness for the swedish "krona".
Smulan
2005-05-18 13:39
when I tried to do as you above I gott the error msg
Warning: Cannot modify header information - headers already sent by (output started at /customers/thugswear.com/thugswear.com/httpd.www/core/other.php:349)
Id did exectly as you guys. whats wrong?
Bengan
2005-05-25 00:37
Smulan: The original content of line 40 is: return sprintf( '%01.2f', $fPrice ); and you say that you've changed it to: return sprintf( '%01.0f', $fPrice ); ? Just weird if that doesn't work.. Just dubblechecked my line 40's. Try again?