Reputation: 994
I enabled paypal payment standard
payment method in admin panel but still I can't see the option when I am in Checkout page.
see below image i enable paypal standard payment gateway
And see below image not visible paypal on frontend. what is the issue i can't find.
Upvotes: 2
Views: 1410
Reputation: 25968
It seems that the currency you are using in your website is not supported by Paypal.
Here is the workaround to solve this problem:
Copy core file app/code/core/Mage/Paypal/Model/Config.php
to local directory: app/code/local/Mage/Paypal/Model/Config.php
In Config.php
file, look for variable $_supportedCurrencyCodes
It will be displayed as follows:
protected $_supportedCurrencyCodes = array('AUD', 'CAD', 'CZK', 'DKK', 'EUR', 'HKD', 'HUF', 'ILS', 'JPY', 'MXN',
'NOK', 'NZD', 'PLN', 'GBP', 'SGD', 'SEK', 'CHF', 'USD', 'TWD', 'THB');
Add your currency in the array. For example, I have added NPR
currency below:
protected $_supportedCurrencyCodes = array('AUD', 'CAD', 'CZK', 'DKK', 'EUR', 'HKD', 'HUF', 'ILS', 'JPY', 'MXN',
'NOK', 'NZD', 'PLN', 'GBP', 'SGD', 'SEK', 'CHF', 'USD', 'TWD', 'THB', 'NPR');
Now, paypal payment option should be displayed in your checkout page.
Upvotes: 1
Reputation: 766
Hope that helps
Upvotes: 0
Reputation: 2835
you must use TLD domain, then the paypal option will appear, localhost or non TLD domain will not working
Upvotes: 0