Home > Software design >  Can't hide product attributes with css on WooCommerce Product Page
Can't hide product attributes with css on WooCommerce Product Page

Time:05-24

I'm having a problem in one site that I am making with wordpress/woocommerce, on product page I want to hide Size and Color from that section, unfortunately I did not succeed.

enter image description here

<span >Size</span>
    
.hide-product-items-labels {
    display: none;
}

OR

<span >Size</span>
    
.hide-product-items-labels {
    visibility: hidden;
}

CodePudding user response:

Check this out, it is working properly.

Before:

enter image description here

After:

enter image description here

  • Related