Hide WooCommerce shopping cart icon
-
The WooCommerce shopping cart icon is displayed on the header of all Tutor LMS pages if Woo is activated. If like me you think that this makes the site seem tacky and more interested in selling than tutoring, here’s a way to hide the cart using the Customizer’s Additional CSS feature:
`.utils-cart { display: none !important; }
@media (max-width: 767px) {
.utils-cart { display: none; }
}`
The first like of CSS hides the cart on big screens and the second on small screens.
- The topic ‘Hide WooCommerce shopping cart icon’ is closed to new replies.