隐藏来自特定国家的Paypal
问题描述:
我使用wordpress,woocommerce和Paypal为网站。 我想隐藏/禁用某个国家内用户的Paypal选项。由于贝宝不在那里做生意。 http://recordit.co/oNF3aHp1D4隐藏来自特定国家的Paypal
什么代码可以实现这一点,而不会干扰其他用户使用PayPal在其他国家结帐?
答
找到了我的问题的答案。加入到你的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');