Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi, I'm trying to remove out of stock label on the product page but somehow I can't do that using CSS.
I tried this CSS:
p.stock.out-of-stock { display: none; }Could you help me with that?
Thank you so much!
Hi Fernando,
You have not added your site URL but please add the code below to your Custom CSS area:=
.woocommerce .product .onsale.oos { display: none; }It should remove the Out of stock badge.
If it doesn't work, then you can add the !important rule, see the example:
.woocommerce .product .onsale.oos { display: none !important; }Have a nice day!