Home › Forums › WoodMart support forum › remove additional information tab › Reply To: remove additional information tab
October 30, 2019 at 10:40 am
#153414
Aizaz Imtiaz Awan
Keymaster
Hello,
To remove the additional information tab from your product page you can use the below custom code in your child theme funtions.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;
}
Best Regards.