gpt4 book ai didi

wordpress - 如何根据邮政编码隐藏 Woocommerce 中的付款方式

转载 作者:行者123 更新时间:2023-12-04 17:50:47 26 4
gpt4 key购买 nike

在这个 woocommerce 设置中,我有 2 种付款方式, Paypal 货到付款 .

现在怎么能货到付款仅对某些邮政编码隐藏/禁用。

这是我在 Gist 上找到的代码

//  Disable gateway based on country
function payment_gateway_disable_country( $available_gateways ) {
global $woocommerce;
if ( isset( $available_gateways['ccavenue'] ) && $woocommerce->customer->get_country() <> 'IN' ) {
unset( $available_gateways['ccavenue'] );
} else if ( isset( $available_gateways['paypal'] ) && $woocommerce->customer->get_country() == 'IN' ) {
unset( $available_gateways['paypal'] );
}
return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_country' );

Gist Link

最佳答案

要禁用/隐藏“货到付款”,请将此代码放在您主题的 function.php 中。

更多详情:woocommerce-hide-payment-gatway-based-on-visitors-country

//  Disable gateway based on country
function payment_gateway_disable_country( $available_gateways ) {
global $woocommerce;
if ( isset( $available_gateways['cod'] ) && $woocommerce->customer->get_country() <> 'IN' ) {
unset( $available_gateways['cod'] );
}
return $available_gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'payment_gateway_disable_country' );

关于wordpress - 如何根据邮政编码隐藏 Woocommerce 中的付款方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17015173/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com