WooCommerce - 隐藏支付网关
WooCommerce - hide payment gateway
我如何在 WooCommerce 上为特定客户隐藏支付网关插件,例如,如果客户的名字是:Peter,插件将不会为他显示。
例如:
我希望这对你有用,如果问题仍然存在,请告诉我。
function woo_disable_cod( $available_gateways ) {
$current_user = wp_get_current_user();
//check whether the avaiable payment gateways have Cash on delivery and user is not logged in or he is a user with role customer
if ( isset($available_gateways['cod']) && ((current_user_can('customer') && $current_user->user_firstname == 'Peter' ) || ! is_user_logged_in() ) ) {
//remove the paypal payment gateway from the available gateways.
unset($available_gateways['paypal']);
}
return $available_gateways;
}
add_filter('woocommerce_available_payment_gateways', 'woo_disable_cod', 99, 1);
我如何在 WooCommerce 上为特定客户隐藏支付网关插件,例如,如果客户的名字是:Peter,插件将不会为他显示。
例如:
我希望这对你有用,如果问题仍然存在,请告诉我。
function woo_disable_cod( $available_gateways ) {
$current_user = wp_get_current_user();
//check whether the avaiable payment gateways have Cash on delivery and user is not logged in or he is a user with role customer
if ( isset($available_gateways['cod']) && ((current_user_can('customer') && $current_user->user_firstname == 'Peter' ) || ! is_user_logged_in() ) ) {
//remove the paypal payment gateway from the available gateways.
unset($available_gateways['paypal']);
}
return $available_gateways;
}
add_filter('woocommerce_available_payment_gateways', 'woo_disable_cod', 99, 1);