Answers for "Hide Categories - Woocommerce Product Page"

CSS
0

Hide Categories - Woocommerce Product Page

//remove categories in the product page of woo
.product_meta .posted_in {display: none !important;}

//remove tags in the product page of woo
.tagged_as{display: none !important;}
Posted by: Guest on January-02-2022
0

Hide Categories - Woocommerce Product Page

/* Remove Categories from Single Products */
remove_action( 'woocommerce_single_product_summary',
'woocommerce_template_single_meta', 40 );
Posted by: Guest on January-02-2022

Code answers related to "Hide Categories - Woocommerce Product Page"

Browse Popular Code Answers by Language