WooCommerce : How to Remove Product Tabs on Product page.

Code

WooCommerce : How to Remove Product Tabs on Product page.

Remove product tabs in WooCommerce Product page.

This post is regarding how we can add custom tabs on a product page on the front-end.
These tabs are additional to the default ‘Description’, ‘Reviews’ and ‘Additional information’ tabs that are available by default.

The default tabs in WooCommerce have the following priorities:

  • Description 10
  • Additional information 20
  • Reviews 30

The 'woocommerce_product_tabs' filter provided by WooCommerce should be used for removing tabs on single product page in WooCommerce. The code should be added to the functions.php file of your theme.

Before
function RemoveReviewsTab( $tabs ) { 
  unset( $tabs['additional_information'] );
  unset( $tabs['description'] );
  unset( $tabs['reviews'] );
  return $tabs;
}
add_filter('woocommerce_product_tabs','RemoveReviewsTab');
After

Enjoy

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

Latest Posts

Smarter Learning for a Smarter Era: How AI Is Transforming Learning Management Systems (LMS) in 2025

  Smarter Learning for a Smarter Era: How AI IsTransforming Learning Management Systems(LMS) in 2025 From Static Systems to Intelligent…

Shafeeq Khan
October 3, 2025

AI Overviews and Google Search: What Businesses Need to Know in 2025

  AI Overviews and Google Search: What Businesses Need to Know in 2025 Entering the Age of AI Overviews The…

Shafeeq Khan
September 23, 2025

Ride Smarter: How AI Is Transforming Cab Apps in the USA for 2025

  Ride Smarter: How AI Is Transforming Cab Apps in the USA for 2025 The New Pulse of Urban Travel…

Shafeeq Khan
September 20, 2025
, ,

Leave a Reply

Your email address will not be published. Required fields are marked *