Home » WooCommerce: How to Hide Cart Table Columns

WooCommerce: How to Hide Cart Table Columns

by Tutor Aspire

There are many reasons why you may want to remove columns (e.g. subtotal) from the Cart table. Sometimes you just want to make it easier for your customers. The less information you show the better!

Some other times,  you may have custom requirements. Well, hiding a Cart table column is actually very easy – and despite this can be done with PHP I believe the CSS way is way faster in this case. Here’s how it’s done!

WooCommerce: hide a cart table column

CSS Snippet: Remove / Hide Column @ WooCommerce Cart Table

/* Change number 4 with number of column you want to remove */

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

You may also like