This topic has 4 replies, 2 voices, and was last updated 2 years, 9 months ago ago by Olga Barlow
how to remove products features added automatically under short description such as (product weight) as well as the tab with the extra features added.
How to disable tags from not showing in single product page.
Hello,
Add the below code to Theme Options > Custom CSS
.product-information-inner .product-attributes {
display: none;
}
Regards
thanks
that works for short description but I still get an extra tab with additional information.
I would like this tab not to be displayed .
Remove tags from not displayed as well.
Hello,
If you don’t want to show Additional Information tab then add the below code to your child theme functions.php
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] ); // Remove the additional information tab
return $tabs;
}
https://woocommerce.com/document/editing-product-data-tabs/
Replace the previous CSS code with this one if you want to remove also product tags
.product-information-inner .product-attributes, .product_meta .tagged_as {
display: none;
}
Regards
Tagged: best selling, features, remove, short description, single product, themes, woocommerce
The issue related to '‘Single product page, remove products features under short description’' has been successfully resolved, and the topic is now closed for further responses