Entfernen Sie die Registerkarte zusätzlicher Informationen mithilfe von PHP -Code -Snippet

/** Remove product data tabs */
 
add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 );
 
function my_remove_product_tabs( $tabs ) {
  unset( $tabs['additional_information'] ); // To remove the additional information tab
  return $tabs;
}
Alert Addax