Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save apisklov/1687f495f51df06a95b07104bcf51e72 to your computer and use it in GitHub Desktop.
Save apisklov/1687f495f51df06a95b07104bcf51e72 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment