[Resolved] How to Remove Category Text from Product Page?

Home Forums Support [Resolved] How to Remove Category Text from Product Page?

Home Forums Support How to Remove Category Text from Product Page?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #699398
    bluebit

    On the product page, underneath every product it shows meta data, like category, tags, etc. I just want to disable category meta field from displaying on the product page. I dont want people to see the category for the product. I tried the below code, but it removes also tags ๐Ÿ™

    How can i just exclude the category text from displaying on the product pages?

    .single-product .product_meta {
    display: none;
    }

    #699550
    David
    Staff
    Customer Support

    Hi there,

    with the GP Woocommerce Module active you can disable them in the Customizer > Layout > Woocommerce. Just uncheck Display product meta data

    #699578
    bluebit

    How do I just disable the category meta data and not the tags meta data, I want to show only tags.

    #699672
    David
    Staff
    Customer Support

    With this CSS:

    .woocommerce .posted_in {
    	display: none;
    }
    #699683
    bluebit

    You gave me the wrong code, I want to show tags, but not show categories.

    #699690
    David
    Staff
    Customer Support

    Edited the above

    #699695
    bluebit

    Thank you, it worked ๐Ÿ™‚

    #699699
    David
    Staff
    Customer Support

    Awesome – glad i could be of help

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.