How to Remove Additional Information in WooCommerce

The “Additional Information” tab is quite irritating and, frankly, very pointless. In this article, we will be teaching you How to Remove Additional Information in Woocommerce using some simple steps.

The WooCommerce product pages tab for additional information displays in WooCommerce the weight, measurements, or other product characteristics.

Remove Additional Information in Woocommerce

The solution proposed by WooCommerce allows you to change the functions.php file or to include some additional codes. You can also use a WordPress Plugin to Remove Additional Information in Woocommerce.

Method 1: Using CSS code

You can add the following code to your WordPress site. Navigate to Appearance >> Customize >> Additional CSS.

/* Hide the additional information tab */
li.additional_information_tab {
    display: none !important;
}

The additional information tab should be hidden on your website after you save updates, but you will still be able to see it in your page HTML code.

Method 2: Using PHP Code

Follow the following steps to use PHP code:

  • Use FTP to access your site files (or SFTP if it is accessible on your hosts).
  • Navigate to the wp-content  folder to install the requisite WordPress, then to the Theme folder and open the functions.php (the active one).
  • Enter the following code at the bottom and save the file updates to your server.

Code:

// Remove the additional information tab
function woo_remove_product_tabs( $tabs ) {
    unset( $tabs['additional_information'] );
    return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

Sum Up

It’s effortless to enter numerous custom code pieces to get things wrong or build conflicts between codes. It is also difficult to debug or fix WooCommerce problems if you don’t know PHP.

To summarize, WooCommerce is quick to set up and customize. We’ve gone through two separate approaches to Remove Additional Information tab. You are free to go in either direction.

  • Method 1: Using CSS code
  • Method 2: Using PHP Code

Anyways, we hope this detailed guide helped you to understand How to Remove Additional Information in Woocommerce. And for the visitor who asked us to write an article on How to Add Products in WooCommerce. We have a dedicated article on this.

If you enjoyed this post, subscribe to our WordPress video tutorials on YouTube Channel. Remember to follow us on Pinterest.

We accept any type of suggestions from the visitors because it always motivates us to improve. Feel free to comment below.

Leave a Comment