Forum
Welcome, Guest
Please Login to access forum.
Re:Changing currency symbol (1 viewing) 
Go to bottom
TOPIC: Re:Changing currency symbol
#195
John Dagelmore
Admin
Posts: 3877
User Offline
Re:Changing currency symbol Karma: 84  
That's great Mike.

You should locate the main plugin file in serverroot/plugins/content/instantpaypal/instantpaypal.php

The at line 295 you will find this code:
Code:

$shippingAmountString = $shippingAmount ? ' | <span>' . $shippingText . $shippingAmount . ' ' . $this->params->get('currency_code', 'USD') . '</span>' : '';
Normally it's showed currency based on plugin setting. You can replace the parameter and replace with symbol, and also invert the order of the strings:
Code:

$shippingAmountString = $shippingAmount ? ' | <span>' . $shippingText . ' £ ' . $shippingAmount . '</span>' : '';
John
 
Logged Logged  
  The administrator has disabled public write access.
Go to top