I have a store enabled for Enfold and would like to disable the shopping cart icon and instead use the WooCommerce widget for that feature. How can I do this?
Hi Bob!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
ul#menu-item-shop {
display: none!important;
}
Cheers!
Yigit
That didn’t quite do it (because I was not specific enough), but I figured it out. I used this:
ul.cart_dropdown {
display: none !important;
}
Thanks for the push in the right direction!