David Hendrickson
David Hendrickson

Reputation: 13

Remove the cart subtotal in Woocommerce

I am working on the cart page for my site and I have a question. I want to try and hide the subtotal after each product price BUT still keep the total cart subtotal. I added a screenshot as a reference below. Any help would be fantastic!

annotated screenshot

Upvotes: 1

Views: 1792

Answers (1)

ibes
ibes

Reputation: 77

This could be accomplished by CSS.

eg.

.woocommerce table.cart td:nth-of-type(6), .woocommerce table.cart th:nth-of-type(6) {
display: none;
}

As explained here: https://www.businessbloomer.com/woocommerce-hide-column-cart-table/

Upvotes: 2

Related Questions