Digerdoo Posted December 2, 2004 Posted December 2, 2004 Why price is showing like this 3,600EUR i want that it like this 3,500 EUR
Guest Posted December 2, 2004 Posted December 2, 2004 Heppi, Where? On what page? You will probably need to go into that page and add a space on whichever line of code is displaying the price. ed
WiseWombat Posted December 2, 2004 Posted December 2, 2004 Why price is showing like this 3,600EUR i want that it like this 3,500 EUR <{POST_SNAPBACK}> maybe its showing a price with tax included ( WARNING ) I think I know what Im talking about. BACK UP BACK UP BACK UP BACK UP
boxtel Posted December 2, 2004 Posted December 2, 2004 maybe its showing a price with tax included <{POST_SNAPBACK}> in the class currencies.php there is a statement like: $format_string = $this->currencies[$currency_type]['symbol_left'] . number_format(tep_round($number, $this->currencies[$currency_type]['decimal_places']), $this->currencies[$currency_type]['decimal_places'], $this->currencies[$currency_type]['decimal_point'], $this->currencies[$currency_type]['thousands_point']) . $this->currencies[$currency_type]['symbol_right']; try changing it to : $format_string = $this->currencies[$currency_type]['symbol_left'] . number_format(tep_round($number, $this->currencies[$currency_type]['decimal_places']), $this->currencies[$currency_type]['decimal_places'], $this->currencies[$currency_type]['decimal_point'], $this->currencies[$currency_type]['thousands_point']) . ' ' . $this->currencies[$currency_type]['symbol_right']; Treasurer MFC
boxtel Posted December 2, 2004 Posted December 2, 2004 in the class currencies.php there is a statement like: $format_string = $this->currencies[$currency_type]['symbol_left'] . number_format(tep_round($number, $this->currencies[$currency_type]['decimal_places']), $this->currencies[$currency_type]['decimal_places'], $this->currencies[$currency_type]['decimal_point'], $this->currencies[$currency_type]['thousands_point']) . $this->currencies[$currency_type]['symbol_right']; try changing it to : $format_string = $this->currencies[$currency_type]['symbol_left'] . number_format(tep_round($number, $this->currencies[$currency_type]['decimal_places']), $this->currencies[$currency_type]['decimal_places'], $this->currencies[$currency_type]['decimal_point'], $this->currencies[$currency_type]['thousands_point']) . ' ' . $this->currencies[$currency_type]['symbol_right']; <{POST_SNAPBACK}> no, not doing it for me, I will check further. Treasurer MFC
Digerdoo Posted December 2, 2004 Author Posted December 2, 2004 Heppi, Where? On what page? You will probably need to go into that page and add a space on whichever line of code is displaying the price. ed <{POST_SNAPBACK}> Hi there! It's not working..
Digerdoo Posted December 2, 2004 Author Posted December 2, 2004 Why price is showing like this 3,600EUR i want that it like this 3,500 EUR <{POST_SNAPBACK}> 3, 500_EUR is working but i want like this 3, 500 EUR or 3,500 ? not like this 3,500EUR or 3,500?
Digerdoo Posted December 2, 2004 Author Posted December 2, 2004 Why price is showing like this 3,600EUR i want that it like this 3,500 EUR <{POST_SNAPBACK}> HURAA!!!! I SOLVE PROBLEM !!! ! YES YES YES!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.