I’ve tried placing the following in custom css to remove the shopping bag from the header as we don’t sell products and haven’t had any luck:
.header-cart.action-area__link .header__link {
display: none;
}
and
span.icon-button.icon-button-header-shopping-cart {
display: none;
}
[data-js-cart-icon=“cart”] [data-js-cart-count] {
display: none;
}
I also have this in base.css and still not removing the shopping bag in the header:
/* Hiding cart icon */
.header__icon:not(.header__icon–summary){
display:none;
}
Website is OhioRoofUnlimited.com - we don’t sell products and need to remove the shopping bag icon in the header. Any other ideas?