Home Forums WoodMart support forum remove additional information tab Reply To: remove additional information tab

#153414

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.