隐藏来自某个国家的Paypal

时间:2017-10-21 07:45:59

标签: php css paypal ip hook-woocommerce

我在网站上使用wordpress,woocommerce和Paypal。 我想隐藏/禁用某个国家/地区内用户的Paypal选项。由于Paypal不在那里做生意。 http://recordit.co/oNF3aHp1D4

在不干扰其他用户使用Paypal在其他国家/地区结帐的情况下,哪些代码可以实现此目的?

1 个答案:

答案 0 :(得分: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' );