Hello,
Paypal pro have different currency list depending the country of the account.
At start, "Paypal Pro" was only available in the US and they added some countries with time.
CF :
developer.paypal.com/docs/classic/api/cu...cy_codes/#creditcard
You have to check the list of the currencies of your account and edit the plugin to change the content of " $accepted_currencies " at the beginning of the plugin.
var $accepted_currencies = array( 'USD', 'GBP', 'EUR', 'JPY', 'CAD', 'AUD' );
In our side, we will see how we can update the plugin to support the different countries and provide a currency filter depending that element.
Because Canada, US and UK do not have "PHP" in their supported currencies so we cannot add it for everybody otherwise it could generated unwanted side effects.
Regards,