Skip to content

Early-bird lifetime licence: $199 once, for the first 200 buyers only. See the offer

Remove the "Additional information" tab

Remove the "Additional information" tab (weight, dimensions, attributes) from WooCommerce product pages.

  • Type PHP
  • Runs Everywhere
PHP
// Remove the "Additional information" tab from product pages.
add_filter(
	'woocommerce_product_tabs',
	function ( $tabs ) {
		unset( $tabs['additional_information'] );
		return $tabs;
	},
	98
);

What it does

WooCommerce adds an "Additional information" tab to product pages when a product has weight, dimensions or visible attributes. Many shops don't want customers to see it.

This snippet removes the tab. The Description and Reviews tabs stay.

Good to know

  • Works with classic themes and with the Product Details block in its default (tabbed) layout. If your block theme uses the newer accordion layout, remove the "Additional information" item in the Single Product template in the Site Editor instead.

Move your snippets over this afternoon.

Importing changes nothing until you switch over, and your old shortcodes keep working.