Website Building » WooCommerce » How Do I Get Rid of the Extra Info Tab in WooCommerce?

How Do I Get Rid of the Extra Info Tab in WooCommerce?

Last updated on October 1, 2022 @ 11:51 pm

As a WooCommerce store owner, you’re probably always looking for ways to streamline your store and make it more user-friendly for your customers. One way to do this is to get rid of the Extra Info tab in WooCommerce.

The Extra Info tab is located in the Product Data section of each product page in WooCommerce. It’s a great place to add additional information about a product that doesn’t necessarily fit into one of the other tabs, such as product attributes or technical details.

However, if you don’t need to use this tab for anything, it can be a bit of a nuisance.

So how do you get rid of the Extra Info tab in WooCommerce? It’s actually quite simple. Just add the following code snippet to your theme’s functions.php file:

PRO TIP: Please note that the following article – ‘How Do I Get Rid of the Extra Info Tab in WooCommerce?’ – may cause errors on your WooCommerce website. We strongly advise against following the steps outlined in this article.
// Remove the extra info tab in WooCommerce
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
 
function woo_remove_product_tabs( $tabs ) {
    unset( $tabs['extra'] );  	// Remove the extra info tab
 
    return $tabs;
}

That’s all there is to it! Once you add this code snippet to your functions.php file, the Extra Info tab will be removed from all of your product pages.

How Do I Get Rid Of The Extra Info Tab In WooCommerce?

Adding the following code snippet to your theme’s functions.php file will remove the Extra Info tab from all of your product pages:

// Remove the extra info tab in WooCommerce
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
 
function woo_remove_product_tabs( $tabs ) {
    unset( $tabs['extra'] );  	// Remove the extra info tab
 
    return $tabs;
}
Kathy McFarland

Kathy McFarland

Devops woman in trade, tech explorer and problem navigator.