Tagged: Cart
I am going live with my site and do not have a store, but I may in the future.
Is there an easy way to remove the cart icon at the top right in the header?
Maybe a way I can easily put it back when I need to?
Thanks.
By the way, this template is amazing, and easy, THANK YOU!
Hey tgalati56!
Thank you for the kind words!
The cart should stay hidden when you don’t have a shop but just to make sure, please add this on Quick CSS or custom.css:
.cart_dropdown.visible_cart {
opacity: 0;
display: none;
}
Cheers!
Ismael
Hi,
I am using Abundance theme for my shopping site with plugin WooCommerce Cart Tab (Displays a sitewide link to the cart which reveals the cart contents on hover.)
What to be done to remove cart option at top? as i don’t need it.
thanks,
Hi!
Please add following code to Quick CSS in Abundance theme options under Styling tab
.cart_dropdown .dropdown_widget { display: none !important; }
Regards,
Yigit
Thanks Yigit, thanks for prompt reply.
After adding above code in Quick CSS, things appear as before but only dropdown display become disable. If i hover mouse over it then there is no display of products added into cart.
In order to rid of Cart Icon, label and amount from Manu, what further has to be done?
Regards,
Hi!
Sorry i thought you wanted to remove dropdown only. Please use following code instead
.cart_dropdown { display: none; }
Regards,
Yigit
Thanks a lot Yigit,
it’s working!