remove additional information woocommerce

remove additional information woocommerce : Hide Additional Information Product Tab. WooCommerce: Remove Additional Information Tab @ Single Product. WooCommerce Tips.

remove additional information woocommerce

If you want to remove the additional information tab from the WooCommerce product page you can use of two ways first using CSS or second way insert a PHP code snippet. or Also You can also use a WordPress Plugin to Remove Additional Information in Woocommerce.

How to remove additional information tab WooCommerce?

Go to this path : Appearance -> Customize -> Addtitional CSS:

using CSS
remove additional information tab WooCommerce using CSS: Use the following snippet to remove specific tabs

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

How to remove additional information tab WooCommerce using PHP

functions.php
Here’s the snippet:

// Remove/delete 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 );

Don’t Miss : WooCommerce remove short description from single product page

Re-ordering Tabs

add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {

	$tabs['reviews']['priority'] = 5;			
	$tabs['description']['priority'] = 10;			
	$tabs['additional_information']['priority'] = 15;	

	return $tabs;
}

I hope you get an idea about remove additional information woocommerce.
I would like to have feedback on my infinityknow.com.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment