当购物车中的总额低于 40 美元时,我需要隐藏所有运输方式。我基本上想禁用所有运输方式,因为我将对所有区域的每个样品收取 4 美元的固定费用。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); } 需要删除以下选项:<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">$</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 回答

忽然笑
TA贡献1806条经验 获得超5个赞
您可以使用以下内容,当购物车项目总数低于 时,将删除所有运输选项$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;
}
代码位于活动子主题(或活动主题)的 function.php 文件中。测试和工作。
没有找到匹配的内容?试试慕课网站内搜索吧
- 1 回答
- 0 关注
- 127 浏览
添加回答
举报
0/150
提交
取消