在woocommerce中,我使用以下内容删除购物车总计部分bloc中的装运块:
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 );
但是在购物车总计部分块中还有其他一些东西,例如购物车小计和总计。
我只需要保留总计
欢迎任何帮助。
答案 0 :(得分:0)
add_filter( 'woocommerce_get_order_item_totals', 'adjust_woocommerce_get_order_item_totals' );
function adjust_woocommerce_get_order_item_totals( $totals ) {
unset($totals['cart_subtotal'] );
return $totals;
}
这是你在找什么?基本上你要求删除小计。
答案 1 :(得分:0)
您似乎只保留了车辆总数部分的总数。为此,唯一的方法是重写woocommerce模板。
有两个步骤:
wp-content/plugins/woocommerce/templates/cart/cart-totals.php
复制到您的有效主题woocommerce/cart/cart-totals.php
(如果尚不存在)。