Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Insert space between amount and currency


Yumi

Recommended Posts

The price is displayed as 1.00EUR . I would like to insert a space to make it 1.00 EUR. If I insert a space in Admin - currencies - symbol right then it is stripped out by the program. A underscore works but a space looks better.

 

Any suggestions?

 

Michael

Link to comment
Share on other sites

  • 1 year later...

That works, but when we get email about order there is " " shown, not space so that's not good...

 

Edit:

 

Found solution (if anyone will come to this post and will need this help):

 

Open:

catalog/includes/classes/currencies.php

Find:

. $this->currencies[$currency_type]['symbol_right']

Replace:

. ' ' . $this->currencies[$currency_type]['symbol_right']

Find:

. $this->currencies[$currency_type]['symbol_right']

Replace:

. ' ' . $this->currencies[$currency_type]['symbol_right']

 

Open:

catalog/admin/includes/classes/currencies.php

Find:

. $this->currencies[$currency_type]['symbol_right']

Replace:

. ' ' . $this->currencies[$currency_type]['symbol_right']

Find:

. $this->currencies[$currency_type]['symbol_right']

Replace:

. ' ' . $this->currencies[$currency_type]['symbol_right']

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...