Sandesh

April 27, 2020

WooCommerce: Remove Additional Information Tab @ Single Product

WooCommerce provides a lot of information on the single product page. Personally, I don’t prefer the tabs provided by WooCommerce. An additional information tab is not required at all. So, I wrote a code to remove it. Maybe, some user needs it, but I don’t like that annoying tab. If you want to remove that “Additional Information” tab, then this snippet is for you.

WooCommerce Remove Additional Information Tab-Single Product

Code: Remove additional information tab @ single product

/**
 * @snippet       WooCommerce: Remove Additional Information Tab @ Single Product
 * @author        Sandesh Jangam
 * @donate $7     https://www.paypal.me/SandeshJangam/7
 */
 
add_filter( 'woocommerce_product_tabs', 'ts_remove_additional_information_tab', 9999 );

function ts_remove_additional_information_tab( $tabs ) {

	unset( $tabs['additional_information'] ); 
	return $tabs;
}

Where to add custom PHP code?

Add the above PHP code at the end of to your child theme’s functions.php. There are many ways to add custom PHP code ( custom functionality ) to WordPress / WooCommerce website. Read this article for more information

Why this code is not working?

If you face any issue with the above code, then please let me know in the comment. I will be happy to review the code, and If it is working for you, then show me some love in the comment section.

Thank you in advance…!

Sharing is Caring!
Share on facebook
Share on twitter
Share on linkedin
Share on pinterest
Share on telegram
Share on whatsapp

About the Author

Sandesh Jangam is Developer, WooCommerce Expert, and Podcaster. He is working as a WordPress developer since 2014 and helping people with this blog. He loves to travel ancient temples, chilling at the beach and reading books

Join 1,000+ Subscribers

Get exclusive access to WordPress, WooCommerce tips, articles, tutorials right in your inbox.​

Share on facebook
Share on twitter
Share on linkedin
Share on pinterest
Share on telegram
Share on whatsapp

2 thoughts on “WooCommerce: Remove Additional Information Tab @ Single Product”

    1. Your theme may have heavily modified the WooCommerce templates. Please contact the theme author and show them this code. I hope they will give you the right hook.

Leave a Comment

Your email address will not be published.

Become a WooCommerce Customization Expert and Earn More​

Get an early access notification right in your inbox.

Learn More or Register Now >>>