Okay
  Public Ticket #1787212
Hide tag and category on product page
Closed

Comments

  •  3
    snapan started the conversation

    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

  • [deleted] replied

    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.