Sales channel logos Ordoro integrates with

#1 Inventory Management app for WooCommerce Stores

15-day free trial. No credit card required.

Growing an ecommerce business isn’t easy.

But, we’ve got the apps to get you there!

Illustration of the Ordoro allocation, picking and packing workflow

SHIPPING

Fulfill orders quickly and accurately across all channels.

  • Score heavily discounted shipping rates
  • Improve accuracy with barcode scanning and order verification
  • Automate workflows with rules and presets
  • Save time with batch processing
  • Boost your brand by customizing labels and packing lists

Learn More

Illustration of an ipad with Ordoro's inventory management feature on the screen.

INVENTORY

Track inventory precisely across all channels and warehouses.

  • Automatically track and sync your inventory levels
  • Gain visibility with low-stock alerts
  • Easily bundle products together with kitting
  • Save time with automation rules, tags, and allocation
  • Stay in control with warehouse transfers, POs, BOM, and MOs

Learn More

Illustration of Ordoro's automated order routing feature sending two orders to two different suppliers.

DROPSHIPPING

Consolidate, route, and oversee all your dropship orders.

  • Hands-free dropshipping with automatic order routing
  • Increase precision with bulk updates
  • Save time with automatic tracking writeback
  • Keep things error-free with automation rules
  • Set up Vendor Portals for better supplier hand-offs

Learn More

Let’s eliminate your headaches.

Take us for a free spin and get back to growing!

Don’t take our word for it…

Thousands of ecommerce sellers trust us to help them scale.

“The real standout is the customer support! They’re friendly, knowledgeable, responsive, and invested in helping us make the most of Ordoro.”

Sean M.

“I estimated Ordoro saves me over 20 hours a month by streamlining basic tasks.”

Jeff B.

Remove Tabs from WooCommerce Product Page per Product

WooCommerce is a powerful and flexible eCommerce platform for WordPress, allowing store owners to customize their online shops to fit their specific needs. One common customization request is to remove or modify the product tabs on WooCommerce product pages. These tabs typically include information such as "Description," "Additional Information," and "Reviews." Customizing these tabs can help streamline the user experience and present only the most relevant information to your customers.

In this article, we'll explore how to hide or remove product tabs in WooCommerce, add custom tabs, and make other relevant customizations to your WooCommerce product pages. We'll also provide tips and resources for further customization.

How Do I Hide Product Tabs in WooCommerce?

1. Use Custom Code in Your Theme’s Functions.php File: To hide product tabs for specific products, you can add a snippet of code to your theme’s `functions.php` file. For instance, to hide the "Additional Information" tab, you can use the following code:

```php

addfilter( 'woocommerceproducttabs', 'hideadditionalinfotab', 98 );

function hideadditionalinfo_tab( $tabs ) {

unset( $tabs['additional_information'] ); // Hide additional information tab

return $tabs;

}

```

This code will remove the tab from all product pages. To hide tabs per product, you might need to add conditional logic to check the product ID.

2. Plugins for Tab Management: There are several plugins available that can help you manage WooCommerce product tabs more efficiently. For example, the "Custom Product Tabs for WooCommerce" plugin allows you to create, edit, and manage tabs for individual products without writing any code. Another popular option is the "WooCommerce Product Tabs Manager," which provides a user-friendly interface to add, remove, and reorder tabs.

How Do I Remove Categories from a Single Product Page in WooCommerce?

1. Remove Categories Using CSS: If you prefer not to modify your theme files, you can hide product categories using simple CSS. Add the following code to your theme’s custom CSS:

```css

.productmeta .postedin {

display: none;

}

```

This code will hide the "Categories" section on all single product pages.

2. Remove Categories with a Code Snippet: You can also remove product categories using PHP by adding a custom function to your theme’s `functions.php` file:

```php

removeaction( 'woocommercesingleproductsummary', 'woocommercetemplatesingle_meta', 40 );

```

This code will remove the categories and tags from the single product page.

How Do I Add Custom Tabs to WooCommerce Single Product Page?

1. Adding Custom Tabs Using a Plugin: The "WooCommerce Product Tabs Plugin" or the "Custom Product Tabs for WooCommerce" plugin allows you to add custom tabs easily. After installing and activating the plugin, navigate to the product editing page, where you can add new tabs by filling out the relevant information, such as the tab title and content.

2. Adding Custom Tabs Programmatically: To add custom tabs programmatically, insert the following code into your theme’s `functions.php` file:

```php

addfilter( 'woocommerceproducttabs', 'woocustomproducttab' );

function woocustomproduct_tab( $tabs ) {

$tabs['custom_tab'] = array(

'title' => ( 'Custom Tab', 'woocommerce' ),

'priority' => 50,

'callback' => 'woocustomproducttabcontent'

);

return $tabs;

}

function woocustomproducttabcontent() {

echo '<h2>Custom Tab Content</h2>';

echo '<p>Here is the content for your custom tab.</p>';

}

```

This code creates a new tab titled "Custom Tab" and displays specified content.

How Do I Remove Product Meta from a Single Product Page in WooCommerce?

1. Removing Product Meta Using PHP: To remove product meta information (like SKU, categories, tags) from the single product page, add the following code to your `functions.php` file:

```php

removeaction( 'woocommercesingleproductsummary', 'woocommercetemplatesingle_meta', 40 );

```

This snippet removes the meta information from all product pages.

2. Using a Plugin to Remove Product Meta: Some plugins, such as "WooCommerce Product Page Customizer," allow you to remove product meta and other elements from the single product page without needing to modify any code.

WooCommerce Remove Tabs but Keep Content

If you want to remove the default tabs but still display the content elsewhere on the product page, you can do so with a bit of custom coding:

1. Remove Tabs While Retaining Content: Use the following code to remove the tabs but keep their content visible on the product page:

```php

addaction( 'woocommercesingleproductsummary', 'woocommerceoutputproductdatatabs', 20 );

```

This code moves the tab content below the product summary instead of in the tabbed area.

WooCommerce Product Tabs Shortcode

To add product tabs using shortcodes, some plugins or themes may support the `[product_tabs]` shortcode. You can insert this shortcode in the product description or any content area to render the product tabs dynamically.

WooCommerce Remove Related Products

1. Remove Related Products Using PHP: To remove related products from the WooCommerce product page, add the following snippet to your `functions.php` file:

```php

removeaction( 'woocommerceaftersingleproductsummary', 'woocommerceoutputrelatedproducts', 20 );

```

2. Plugins to Manage Related Products: Alternatively, you can use plugins like "WooCommerce Custom Related Products" to have more control over related products displayed on the product pages.

WooCommerce Remove Description Tab Title

To remove or hide the "Description" tab title but keep its content visible, use the following CSS:

```css

#tab-title-description {

display: none;

}

```

This CSS snippet will hide the tab title but keep the description content displayed in the tabs section.

WooCommerce Product Tabs Plugin

Several plugins allow for advanced customization of WooCommerce product tabs, such as:

1. WooCommerce Tab Manager: Allows you to create, manage, and organize custom tabs on your WooCommerce product pages.

2. WooCommerce Product Tabs Pro: Provides a more feature-rich solution for adding, editing, and organizing product tabs on your WooCommerce store.

WooCommerce Product Tabs Elementor

For users who prefer a visual builder, Elementor Pro includes WooCommerce widgets that allow you to customize product tabs visually. Using Elementor, you can add, remove, or style tabs to fit your design preferences.

Custom Product Tabs for WooCommerce

Customizing product tabs can significantly enhance the customer experience by providing only the most relevant information. For more advanced tab customization, using a WooCommerce-specific plugin like "Custom Product Tabs for WooCommerce" or "WooCommerce Tab Manager" can provide more flexibility.

Conclusion

Customizing WooCommerce product pages by removing or adding tabs, hiding categories, and controlling product meta is vital for many WooCommerce store owners looking to optimize their user experience. By leveraging custom code snippets or using the appropriate plugins, you can tailor your WooCommerce store to better serve your customers' needs.

For more detailed guides and WooCommerce customization tips, visit the WooCommerce Documentation.

This article is Sponsored by Ordoro: A Popular App for WooCommerce Stores Inventory Management

If you’re managing inventory and need a powerful solution, consider using Ordoro, a popular app among WooCommerce users for comprehensive inventory management. Ordoro integrates seamlessly with WooCommerce, making inventory management straightforward and efficient.