Forum
Welcome, Guest
Please Login to access forum.
[RESOLVED] Changing currency symbol (1 viewing) 
Go to bottom
TOPIC: [RESOLVED] Changing currency symbol
#227
Mike Wheeler
Fresh Boarder
Posts: 7
User Offline
Re:[RESOLVED] Changing currency symbol Karma: 0  
Here's the fix we used which may help others...

Code:

$additionalInfo = '<div class="' . $this->params->get('css_infoxtd_class', null) . '"><span>' . $productName . '</span> - £<span class="displayPrice">' . $price . '</span><span class="currencyDisplay"> ' . $this->params->get('currency_code', 'USD') . ' ' . $taxAmountString . $shippingAmountString .'</span></div>';
By adding a couple of span classes (displayPrice and currencyDisplay) and a £ symbol we then used CSS display: none without changing the visibility to hide the GBP on the price output and fortunately Paypal still picked it up when adding to the cart... Bit of a hack but it works OK so far... Thanks
 
Logged Logged  
  The administrator has disabled public write access.
#592
Dino
Fresh Boarder
Posts: 2
User Offline
Re:[RESOLVED] Changing currency symbol Karma: 0  
Hello.
I would like to receive payments in Euro, but I do not know what code to use for the Euro!

Thanks for your help.
Domenico
 
Logged Logged  
  The administrator has disabled public write access.
#593
John Dagelmore
Admin
Posts: 3722
User Offline
Re:[RESOLVED] Changing currency symbol Karma: 79  
Hello,

the currency code for Euro is of course EUR

You find currencies codes in the tooltip of the plugin setting to change currency




Regards

John
 
Logged Logged  
  The administrator has disabled public write access.
#594
Dino
Fresh Boarder
Posts: 2
User Offline
Re:[RESOLVED] Changing currency symbol Karma: 0  
Thanks, I had not seen!

You are very kind.

Good job.
 
Logged Logged  
  The administrator has disabled public write access.
Go to top