Voeg deze code toe aan functions.php van je thema of in Code Snippets.


 // remove tab specificaties 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;}