Archived topic
Sticky header and sticky Woo shoppingcart
5 replies · Started by Danielle on June 12, 2022
If you scroll down and then up on a productpage the sticky woo shopping cart and sticky header of generate press do not really work smooth together. any idea how to fix?
Hi there,
when you have the sticky nav set to only show on scroll up, and the page is so short in height .. thats about as good as it gets. You may want to consider not having both options enabled together or setting the sticky nav to always display.
How can i disable it on productpages? but not on other pages?
You can try this to hide the sticky shopping cart:
.single-product div#wc-sticky-cart-panel {
display: none;
}
i want the stick header gone not the sticky add to cart
Hi Danielle,
I see. Thank you for clarifying.
Here’s a CSS you may try adding in Appearance > Customize > Additional CSS:
.single-product nav#sticky-navigation.is_stuck {
display: none !important;
}
Kindly let us know how it goes.