2017-10-21 169 views

回答

0

找到了我的问题的答案。加入到你的function.php

// Hide Paypal from _____ Country 
function YOURTHEME_payment_gateway_disable_country($available_gateways) { 
global $woocommerce; 
if (isset($available_gateways['paypal']) && $woocommerce->customer->get_country() == 'YOUR COUNTRY CODE') { 
unset($available_gateways['paypal']); 
} 
return $available_gateways; 
} 
add_filter('woocommerce_available_payment_gateways', 'YOURTHEME_payment_gateway_disable_country');