Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created February 22, 2016 13:07
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mikejolley/e73f9d061aaebd25ccdc to your computer and use it in GitHub Desktop.
Save mikejolley/e73f9d061aaebd25ccdc to your computer and use it in GitHub Desktop.
WooCommerce - Remove subtotal row.
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;
}
@ewolfy
Copy link

ewolfy commented Oct 26, 2018

@jaibojo

To remove Subtotal row (in mobile also) add this code to style.css
.cart-subtotal { display: none !important; }

@wesleygoldsborough
Copy link

This is the answer for removing the subtotal from the cart and checkout pages
https://stackoverflow.com/questions/53277895/remove-subtotal-line-from-cart-and-checkout-pages-in-woocommerce

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment