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 want to hide tag on single product pages. I tried code from this page https://laborator.ticksy.com//ticket/1457572/ but it did not work.
Can you please give me codes that will work for
1. Hide tag only
2. Hide tag and category
Thank you
Siri
Hi Siri,
If you want to hide only category add this Custom CSS:
.woocommerce .summary .product_meta>span.posted_in { display: none; }For tags add this one:
.woocommerce .summary .product_meta>span.tagged_as { display: none }And for both:
.woocommerce .summary .product_meta>span.posted_in, .woocommerce .summary .product_meta>span.tagged_as { display: none }I hope this will do the work for you.