How to add MXN currency in paypal

Discussion in 'Payments processing' started by jet2050, Dec 19, 2009.

  1. jet2050

    jet2050 New Member

    Joined:
    Dec 19, 2009
    Messages:
    2
    Hi

    How can I add MXN currency for a product to be used in paypal ?

    TIA
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Edit /amember/plugins/payment/paypal_r/paypal_r.inc.php and change this:
    Code:
            add_product_field('paypal_currency',
                'PayPal Currency',
                'select',
                'valid only for PayPal processing.<br /> You should not change it<br /> if you use 
                another payment processors',
                '',
                array('options' => array(
                    '' => 'USD',
                    'GBP' => 'GBP',
                    'EUR' => 'EUR',
                    'CAD' => 'CAD',
                    'AUD' => 'AUD',
                    'JPY' => 'JPY'
                ))
                );
    

    to

    Code:
            add_product_field('paypal_currency',
                'PayPal Currency',
                'select',
                'valid only for PayPal processing.<br /> You should not change it<br /> if you use 
                another payment processors',
                '',
                array('options' => array(
                    '' => 'USD',
                    'GBP' => 'GBP',
                    'EUR' => 'EUR',
                    'CAD' => 'CAD',
                    'AUD' => 'AUD',
                    'JPY' => 'JPY',
                    'MXN' => 'MXN'
                ))
                );
    
    
  3. jet2050

    jet2050 New Member

    Joined:
    Dec 19, 2009
    Messages:
    2
    thanks

    thank you

    Have a nice day

    :)

Share This Page