How can I add more currencies Paypal accepts? Print

  • 0

Go to: /components/gateways/nonmerchant/paypal_payments_standard/paypal_payments_standard.php

And edit the following:

public function getCurrencies() {
        return array("AUD", "BRL", "CAD", "CZK", "DKK", "EUR", "HKD", "HUF", "ILS", "JPY",
            "MAD", "MYR", "MXN", "NOK", "NZD", "PHP", "PLN", "GBP", "SGD", "SEK", "CHF",
            "TWD", "THB", "TRY", "USD");
}

Everything PayPal accepts USD, AUD, GBP, CAD, CZK, DKK, EUR, HKD, HUF, ILS, JPY, MXN, TWD, NZD, NOK, PHP, PLN, SGD, SEK, CHF, THB, RUB:

public function getCurrencies() {
        return array("USD", "AUD", "CAD", "CZK", "DKK", "EUR", "HKD", "HUF", "ILS", 
            "JPY", "MXN", "TWD", "NZD", "NOK", "PHP", "PLN", "SGD", "SEK", "CHF",
            "THB", "RUB");
}

Was this answer helpful?

« Back