How to remove order total on cart page
-
Hi everyone..i’m having hard time finding a fix for this. How can I remove the order total on the cart page?
Here’s a picture of what i mean:
I was able to remove the shipping calculation info on the cart page with this code:
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 );Is there a similar code i can use to remove the total but keep the substotal?..thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to remove order total on cart page’ is closed to new replies.