php 隐藏WooCommerce特定运输区域的支付方式和最小小计

jdzmm42g  于 2023-01-12  发布在  PHP
关注(0)|答案(1)|浏览(101)

在WooCommerce中,我试图删除“货到付款”付款方式时,购物车小计高达250美元的特定运输区名称(区1,区4和区7)。
所有其他区域不得有此限制。
下面是基于此线程的不完整代码:

add_filter( 'woocommerce_available_payment_gateways', 'change_payment_gateway', 20, 1);
function change_payment_gateway( $gateways ){
    
    $zone = $shipping_zone->get_zone_name();

    if( WC()->cart->subtotal > 250 ) && if($zone=='Zone 1','Zone 4','Zone 7'){
    
        unset( $gateways['cod'] );
    }
    return $gateways;
}

任何帮助都很感激。

xoshrz7s

xoshrz7s1#

以下内容将删除特定配送区域的“货到付款”支付网关,并且购物车小计达到**250**时:

add_filter( 'woocommerce_available_payment_gateways', 'conditionally_remove_payment_methods', 20, 1);
function conditionally_remove_payment_methods( $gateways ){
    // Not in backend (admin)
    if( is_admin() ) 
        return $gateways;

    // HERE below your targeted zone names
    $targeted_zones_names = array('Zone 1','Zone 4','Zone 7');

    $chosen_methods    = WC()->session->get( 'chosen_shipping_methods' ); // The chosen shipping mehod
    $chosen_method     = explode(':', reset($chosen_methods) );
    $shipping_zone     = WC_Shipping_Zones::get_zone_by( 'instance_id', $chosen_method[1] );
    $current_zone_name = $shipping_zone->get_zone_name();

    if( WC()->cart->subtotal > 250 && in_array( $current_zone_name, $targeted_zones_names ) ){
        unset( $gateways['cod'] );
    }
    return $gateways;
}

代码在您的活动子主题(或活动主题)的functions.php文件中。

相关问题