dongzong8110 2019-05-22 05:07
浏览 168
已采纳

在WooCommerce中隐藏基于购物车商品总数的所有送货方式

I need to hide all shipping methods when total in cart is below $40. I basically want to disable all shipping methods as I will be charging a $4 flat fee for each sample for all my zones.

if ($_SESSION["sample_count"] == $_SESSION["cart_items_count"]){

    $sample_count = $_SESSION["sample_count"];
    $sample_shipping_cost = 4;
    $woocommerce->cart->add_fee( 'Samples Postage', ($sample_count * 4), true, '' );
    set_cart_contents_weight(0);    
}               

need to remove the options below:

<td data-title="Transport Costs">
    <ul id="shipping_method">
        <li>
            <input type="radio" name="shipping_method[0]" data-index="0" id="shipping_method_0_wbs10065ab3a2_delivery" value="wbs:10:065ab3a2_delivery" class="shipping_method"  checked='checked' />
            <label for="shipping_method_0_wbs10065ab3a2_delivery">Delivery: <span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">&#36;</span>6.28</span></label>
        </li>
        <li>
            <input type="radio" name="shipping_method[0]" data-index="0" id="shipping_method_0_local_pickup16" value="local_pickup:16" class="shipping_method"  />
            <label for="shipping_method_0_local_pickup16">Local pickup</label>
        </li>
    </ul>
  • 写回答

1条回答 默认 最新

  • doudansui6650 2019-05-22 07:49
    关注

    You can use the following, that will remove all shipping options when cart items total is under $40:

    add_filter( 'woocommerce_cart_needs_shipping', 'show_hide_shipping_methods' );
    function show_hide_shipping_methods( $needs_shipping ) {
        $cart_items_total = WC()->cart->get_cart_contents_total();
    
        if ( $cart_items_total < 40 ) {
            $needs_shipping = false;
    
            // Optional: Enable shipping address form
            add_filter('woocommerce_cart_needs_shipping_address', '__return_true' );
        }
    
        return $needs_shipping;
    }
    

    Code goes in function.php file of the active child theme (or active theme). Tested and works.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置