Remove the “Additional information” tab
Removes the Additional information tab (weight, dimensions, attributes) from product pages.
<?php
add_filter(
'woocommerce_product_tabs',
static function ( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
},
98
);
In these packs
- WooCommerce: shop and product pages: Badges, price display, tabs and layout for your shop and product pages.