Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Currency showing problem


Digerdoo

Recommended Posts

Posted

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

Posted
Why price is showing like this 3,600EUR

 

i want that it like this 3,500 EUR

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

Posted
maybe its showing a price with tax included

 

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

Posted
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'];

 

no, not doing it for me, I will check further.

Treasurer MFC

Posted
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

 

Hi there!

 

It's not working..

Posted
Why price is showing like this 3,600EUR

 

i want that it like this 3,500 EUR

 

 

3, 500_EUR is working

 

but i want like this 3, 500 EUR or 3,500 ?

 

not like this 3,500EUR or 3,500?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...