Remove The WOOCOMMERCE "CART" from menu

Anik TM

Newbie
Joined
Jan 3, 2017
Messages
38
Reaction score
7
I want to remove WOOCOMMERCE "CART" from menu. I currently use Pressive theme.
Can anyone help me please :)

chart.png
 
This is wordpress I assume. In the customization go to the custom css and input

.woo-menu-cart {
display: none !important;
}
 
I have tried it, but it's not working
 
Can you send me a pm to your website so I can check wich div it is.
 
I have tried it too, it's not working on Pressive theme.
 
Problem solved. I have use this code
#top .wc-nav li.cart {
display: none !important;}
#top .wc-nav li.checkout{
display: none !important;}

Thanks everyone for help :)
 
Back
Top