On the description tab it says: Product Description - is there a way tor remove this as it is repeptive?
Also is it possible to remove the Additional Information tab?
Thanks
Vince
On the description tab it says: Product Description - is there a way tor remove this as it is repeptive?
Also is it possible to remove the Additional Information tab?
Thanks
Vince
Hey!
You can hide it with following code:
#tab-description, #tab-attributes, li a[href="#tab-description"], li a[href="#tab-attributes"]{
display: none !important;
}
I'd add it to css/custom.css
Best regards,
Peter
Thanks Dude, that worked maybe a little too well :) Let me rephrase: Can I remove text 'Product Descrption' but still keep teh description tab that says 'Description'
Also remove the Additional Information tab.
Thanks
Vince
Hi!
You can try this instead
.woocommerce_tabs #tab-description h2 {
display: none !important;
}
.woocommerce_tabs .tabs li {
display: none;
}
.woocommerce_tabs ul.tabs li:first-child {
display: block;
}
Regards,
Chris
That worked :)
Cheers
Vince
Hey!
Glad that we could help you :)
Best regards,
Peter
This topic has been closed to new replies.