Tagged: woocommerce
Hi
I’m having trouble trying to remove the “description” tab from the product page. I just want to remove the tab, not the content inside.
I tried with this on css enfold options but it doesn’t work:
div.product .woocommerce-tabs ul.tabs {
visibility: hidden;
}
Is there any other code?
Thanks
Hey gasto,
Please try adding this at the very end of your themes / child themes functions.php file:
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] ); // Remove the description tab
return $tabs;
}
Best regards,
Vinay
Thanks a lot.