我想在购物车页面中排除运费,如果有的话。总计应该只显示实际的商品总数和折扣或优惠券(如果有的话)。
我尝试在function.php中添加此代码,但只隐藏了送货详细信息,但费用仍在总计中添加。
function disable_shipping_calc_on_cart( $show_shipping ) {
if( is_cart() ) {
return false;
}
return $show_shipping;
}
add_filter( 'woocommerce_cart_ready_to_calc_shipping', 'disable_shipping_calc_on_cart', 99 );
My Cart Page after above code - doesn't remove fee from total