This file contains 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
<?php | |
//woocommerce中文网关支持paypal | |
// details at http://devework.com/support-paypal-gateway-in-woocommerce.html | |
//本函数解决的问题:贝宝不支持你的商铺货币。Gateway Disabled: PayPal does not support your store's currency. | |
add_filter( 'woocommerce_paypal_supported_currencies', 'enable_custom_currency' ); | |
function enable_custom_currency($currency_array) { | |
$currency_array[] = 'CNY'; | |
return $currency_array; | |
} |