• Resolved mynameisme

    (@mynameisme)


    I don’t want the category tags to show up on my Woocommerce Product pages. How do I prevent them from showing up on each product page?

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    Please add below code in functions.php.

    /* Remove Categories from Single Products */ 
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );

    or there is an alternative way to hide Category from WooCommerce Product Page.

    Here is the code you can add in Appearance > Customizer > Additional CSS:
    .product_meta .posted_in {display: none !important;}

    Thank you

    It looks like it’s you may have found a solution to this. I am going to mark this as Resolved at this time. If you have another issue please feel free to open a new post. 🙂

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tags Showing up On my Woocommerce Product Page’ is closed to new replies.