Hide WooCommerce Icon from Divi Header

Written by Dan Mossop

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?"

We may earn a commission when you visit links on our website.

Streamline Your Divi Experience with Divi Booster

Divi Booster enhances your Divi theme with dozens of new options, including the ability to effortlessly hide elements like the WooCommerce cart icon in your header. Maximize your site's customization and user experience with ease.

Latest Posts

Customize Lightbox Title Styling in the Divi Gallery Module

Adjust the appearance of the lightbox title that appears when visitors open images from a Divi Gallery to align with your brand and improve readability. Refining the title’s color, size, and weight enhances visual hierarchy, accessibility, and overall polish. In this...

Center the Lightbox Image Count in the Divi Gallery Module

Centering the image count in a gallery lightbox creates a cleaner, more balanced presentation and makes it easier for visitors to see where they are in the image set. This simple visual tweak can enhance readability, especially with larger images and longer captions,...

Style the Divi Gallery Module Lightbox Image Count

Tailor the appearance of the image counter in the Divi Gallery module lightbox to match your brand and improve readability. By customizing the counter’s color and typography, you ensure it displays clearly and suits your design. In this guide we show you how to style...

Customize the Lightbox Image Background Color in the Divi Gallery

Control the color that appears behind your images when users open in the gallery lightbox, including support for semi-transparent hues. This helps improve contrast for transparent images, align the experience with your brand palette, and create a more polished viewing...

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

50 Comments

  1. Thank you so much. Been trying to do this for ages!

    Reply
    • You're very welcome, Karen!

      Reply
  2. Hi,

    Any css code available to change the cart icon to something else like a speech bubble?

    Thanks
    D

    Reply
    • Hi Mary, I think this is because the RoyalCommerce theme you're using is implementing its own cart icon in the header, separate from the Divi one.

      You should be able to hide the RoyalCommerce cart icon with this CSS:

      #et-top-navigation .cart-contents { 
          display: none;
      }
      

      You can add it into the "Divi > Theme Options > General > Custom CSS" box. I'm not sure if RoyalCommerce has renamed Divi in the WordPress Dashboard menu, but if so I image the theme options would be found under a "RoyalCommerce" menu item instead.

      Reply
  3. where to write this code?
    .et-cart-info { display:none !important; }

    Reply
    • Hi Maher, you should be able to add it in to the Divi Custom CSS box found at "Divi > Theme Options > General > Custom CSS", or alternatively in the style.css file of your child theme if you are using one.

      Reply
  4. Thank you the code helped and your content is interesting will check your stuff out.!

    Thanks Again

    Reply
    • You're welcome, qumar!

      Reply
  5. That one line CSS worked like charm. Thank you so much Dan

    Reply
    • You're very welcome, Saiful!

      Reply
  6. Didn't work for me :(

    Reply
    • Hi Vik, it looks Divi was overriding the CSS rule on vertical menus. I've updated the post above to add "!important" to the rule. This will ensure that the rule takes precedence over Divi's vertical menu style and should get the icon hidden for you. I'll include this fix in the next version of Divi Booster (2.8.8) which I'll hopefully have out this coming week. Let me know if the icon is still showing after that. Thanks!

      Reply
  7. Worked like a dream! This was extremely useful thank you!

    Reply
    • You're very welcome, Jasmin. Thanks for letting me know!

      Reply
  8. Hi,
    I set this option, but the cart icon is still at the header. I don't know where there is a problem, can you help me? Thank you

    Reply
    • Hi Jack, I just took a look at the site and the cart icon now appears to be hidden correctly. If you're still not seeing it, can you try clearing your browser cache to see if that helps? It looks like Divi Booster's files are being cached by the SG Optimizer plugin you're running. I'd suggest you purge the SG cache after making any future changes in Divi Booster to ensure that they show up straight away. I hope that helps.

      Reply
  9. Thank you so much for the tip. I must have tried 5 code lines suggested on different forums with no luck, before I came across yours. I racked my brain for an hour looking in every menu possible and couldn't find a way to remove that cart.

    Reply
  10. nicely work for me

    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 *.