Skip to content

Snippet: Remove the WooCommerce “Additional Information” Tab

The following snippet will remove the Additional Information tab from WooCommerce single products page and this snippet will work with any theme not just Total.

/**
 * Removes the WooCommerce "Additional Information" tab from the single products.
 *
 * @link https://total.wpexplorer.com/docs/snippets/remove-woocommerce-additional-information-tab/
 */
add_filter( 'woocommerce_product_tabs', function( $tabs ) {
    unset( $tabs['additional_information'] );
    return $tabs;
}, 98 );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top