Reputation: 13
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!
Upvotes: 1
Views: 1792
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