HIde sections on Cart page?
-
I am using the newest version of WP and WC. I am trying to hide the Shipping, Tax and Total rows on the CART page, only. However, these rows should not be displayed on desktop browsers, mobile and tablet views.
I have tried this code, but it does not hide what I what hidden:
.page-id-4944 tr.tax-total { display: none !important; } .page-id-4944 tr.order-total { display: none !important; } @media (max-width: 768px) { .cart_totals tr:nth-child(n+2) { display: none !important; } }
But it is still displaying on the CART page.
How do I remove those 3 rows from the Cart page?
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘HIde sections on Cart page?’ is closed to new replies.