Hello, Currently all my subscriptions are in Brazilian Reais (BRL), but the PayPal integration plugin only shows prices in US Dollars (USD). PayPal accepts BRL as a currency. How can I change on the PayPal_R integration plugin to handle this specific currency? Thanks.
Sure you can add this to /amember/plugins/payment/paypal_r/paypal_r.inc.php: PHP: 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', 'BRL' => 'BRL' )) );