Comments 3snapan started the conversationNovember 17, 2018 at 4:14pmHi,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 only2. Hide tag and categoryThank youSiri[deleted] repliedNovember 19, 2018 at 9:12amHi 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. Sign in to reply ...
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:
For tags add this one:
And for both:
I hope this will do the work for you.