Hide WooCommerce Icon from Divi Header

When using WooCommerce, a little shopping cart icon will appear in your Divi theme's Header menu (either in the main header or in the secondary navigation bar if you have one).

Hide the Cart Icon using Divi Booster

Divi Booster includes an option to hide the WooCommerce cart icon from the header.

You'll find the option on the Divi Booster settings page, at:

"Plugins > WooCommerce > Remove WooCommerce cart icon from header" 

Hide the Cart Icon using CSS

If you'd like to get rid of it, you can use the following CSS:

.et-cart-info { display:none !important; }

Hide the Cart Icon from logged out users

If you want to hide the cart icon from logged out users (so that only logged in users see it), you can use this CSS instead:

body:not(.logged-in) .et-cart-info { display:none !important; }

Hide the Cart Icon on desktop only

If you want to hide the cart icon on desktop, but keep it showing on mobile / tablet, use this CSS:

@media only screen and (min-width: 981px) {
   .et-cart-info { 
        display:none !important; 
   }
}

Hide the Cart Icon using Hide Woo Elements

You can also hide the cart icon using the Hide Woo Elements plugin. Its option for hiding the cart icon can be found from the WP dashboard at:

"WooCommerce > Hide Woo Elements > Hide Elegant Themes header cart?"

This post may contain referral links which may earn a commission for this site

Divi Booster

Hundreds of new features for Divi
in one easy-to-use plugin

50 Comments

  1. THANK YOU! After many different codes that did not work, I used Customizing>Additional Css, pasted your code:
    et-cart-info { display:none; }
    into the box, and it worked right away.

    Reply
  2. Thanks a lot. Worked.

    Reply
  3. I find it. Thanks For this Tutorial

    Reply
  4. Perfect! Thanks!

    Reply
  5. Yep, worked for me to. Put it in the Theme Options => General => Custom CSS (at bottom of page). Thanks! :)

    Reply
  6. Awesome, first solution that worked after many searches

    Reply
  7. Thanks a lot!

    Reply
  8. Perfect. Thanks!

    Reply
  9. I pasted this code in the Custom CSS space at the bottom of the Divi Theme Options page and it worked. Thanks for this.

    Reply
  10. where do you paste the code to take effect??

    Reply

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.