remove description tab from all product pages
-
remove description tab from all product pages
Hello,
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
li#tab-title-description {
display: none !important;
}
Best Regards
I have added your code. Now “Description” tab is not displaying. but the content of description is still displaying when we open the product page. please help me to hide the content of description also.
Hello,
Please remove the previous code and try to add the following PHP code snippet to the child theme functions.php file to fix this.
add_filter( 'woocommerce_product_tabs', 'pk_remove_desc_tab', 9999 );
function pk_remove_desc_tab( $tabs ) {
unset( $tabs['description'] );
return $tabs;
}
Best Regards