text WooCommerce仅针对选定的countires显示付款方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text WooCommerce仅针对选定的countires显示付款方式相关的知识,希望对你有一定的参考价值。
https://businessbloomer.com/disable-payment-gateway-specific-country-woocommerce/
/**
* @snippet WooCommerce Disable Payment Gateway for a Specific Country
* @how-to Watch tutorial @ https://businessbloomer.com/?p=19055
* @sourcecode https://businessbloomer.com/?p=164
* @author Rodolfo Melogli
* @compatible WooCommerce 3.5.7
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/
add_filter( 'woocommerce_available_payment_gateways', 'bbloomer_payment_gateway_disable_country' );
function bbloomer_payment_gateway_disable_country( $available_gateways ) {
if ( is_admin() ) return $available_gateways;
if ( isset( $available_gateways['authorize'] ) && WC()->customer->get_billing_country() <> 'US' ) {
unset( $available_gateways['authorize'] );
} else {
if ( isset( $available_gateways['paypal'] ) && WC()->customer->get_billing_country() == 'US' ) {
unset( $available_gateways['paypal'] );
}
}
return $available_gateways;
}
以上是关于text WooCommerce仅针对选定的countires显示付款方式的主要内容,如果未能解决你的问题,请参考以下文章
Google 自定义搜索自动填充功能仅针对选定的字词
在 WooCommerce 中获取并显示选定的变体 SKU
在 Woocommerce 可变产品上获取 jQuery 中选定的变体价格
如何仅将选定的行从handsontable导出到csv
Wordpress:仅适用于 Woocommerce 品牌页面的摘录
禁用在Woocommerce中编辑特定的管理员自定义字段