This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter('woocommerce_paypal_supported_currencies', 'add_aed_paypal_valid_currency'); | |
| function add_aed_paypal_valid_currency($currencies) | |
| { | |
| array_push($currencies, 'INR'); /* YOUR CURRENCY */ | |
| return $currencies; | |
| } | |
| add_filter('woocommerce_paypal_args', 'woocommerce_paypal_args_for_inr'); | |
| function woocommerce_paypal_args_for_inr($paypal_args) | |
| { |