Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Jun 2009
    Posts
    16
    Plugin Contributions
    0

    Default New Malaysian Ringgit (MYR) currency added to paypal

    Malaysian Ringgit (MYR) is a new currency recently added to paypal send/request money on top of the existing 22 currencies.

    However, I wonder how should I setup in my PayPal IPN - Website Payments Standard to accept MYR ?

    In currencies, I added Malaysian Ringgit with code = MYR but on the paypal checkout page, it will automatically be converted to USD.

    Any idea whether it should be working or not?

  2. #2
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    541
    Plugin Contributions
    0

    Default Re: New Malaysian Ringgit (MYR) currency added to paypal

    You have to modify the paypal code in the /modules/payment/folder

    Search for

    Code:
    'CAD', 'EUR', 'GBP',
    in all paypal related files. (There must be paypal in the name!!!
    They are in an array where all currencies accepted by paypal are defined and add 'MYR' to the end of the list.

    I remember there are 3 or 4 files where you have to change this.

    If you want to update the configuration files as well, replace all occurrences of

    Code:
    $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Transaction Currency', 'MODULE_PAYMENT_PAYPALWPP_CURRENCY', 'Selected Currency', 'Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>', '6', '25', 'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\', \'Only THB\'), ',  now())");
    with

    Code:
    $db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Transaction Currency', 'MODULE_PAYMENT_PAYPALWPP_CURRENCY', 'Selected Currency', 'Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>', '6', '25', 'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\', \'Only THB\', \'Only MYR\'), ',  now())");
    After the update, you have to remove and add the paypal module to update the database.

 

 

Similar Threads

  1. How do I set MYR currency instead of USD during checkout process?
    By smokey2376 in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 6
    Last Post: 20 Nov 2012, 12:12 PM
  2. No Tax Added When New Country Added to Zone
    By mach9 in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 0
    Last Post: 30 Sep 2010, 10:42 AM
  3. Express checkout in v1.3.8 do not contains new currency(MYR) supported by Paypal
    By limcheewooi in forum PayPal Express Checkout support
    Replies: 1
    Last Post: 8 Nov 2009, 07:42 AM
  4. Express checkout with MYR
    By limcheewooi in forum Managing Customers and Orders
    Replies: 1
    Last Post: 5 Jun 2009, 06:06 AM
  5. Added new product and extra images were added with it? (not wanted)
    By bakdoor in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 2 Nov 2008, 10:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg