Title: Override default tabs
Last modified: August 26, 2018

---

# Override default tabs

 *  Resolved [charchar](https://wordpress.org/support/users/charlenechin91/)
 * (@charlenechin91)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/override-default-tabs/)
 * Hey guys! is there a way to override the default tags in woocommerce and use 
   this Custom Product Tabs for WooCommerce instead?
 * Default looks like [this](https://ibb.co/hpwSQ9)
 * Can’t seem to find the “override button” either – mine looks like [this](https://ibb.co/dZjxQ9)
    -  This topic was modified 7 years, 8 months ago by [charchar](https://wordpress.org/support/users/charlenechin91/).
    -  This topic was modified 7 years, 8 months ago by [charchar](https://wordpress.org/support/users/charlenechin91/).

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [charchar](https://wordpress.org/support/users/charlenechin91/)
 * (@charlenechin91)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/override-default-tabs/#post-10626975)
 * Sorry i mean “default tabs “
 *  Plugin Contributor [yikesitskevin](https://wordpress.org/support/users/yikesitskevin/)
 * (@yikesitskevin)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/override-default-tabs/#post-10628198)
 * Hi [@charlenechin91](https://wordpress.org/support/users/charlenechin91/),
 * Our plugin doesn’t integrate with the default WooCommerce tabs but you have a
   few options.
 * If you’re trying to not use the Description tab, I would recommend leaving it
   empty. It will not appear if it’s empty.
 * You can turn off the Reviews tab on a product by disabling reviews (This is found
   in the Reviews _Advanced_ section of the product edit screen).
 * You can’t turn off the Additional Information tab as this is automatically created
   when your product has “weight, dimensions or attributes.”
 * However, using some custom code, you can disable all of these tabs. Here is an
   example of custom code that will remove all three default WooCommerce tabs.
 *     ```
       // Remove Tabs
       add_filter( 'woocommerce_product_tabs', 'yikes_woo_remove_tabs', 20, 1 );
   
       function yikes_woo_remove_tabs( $tabs ) {
   
           // Remove the description tab
           if ( isset( $tabs['description'] ) ) {
           	unset( $tabs['description'] );
           } 
   
           // Remove the additional information tab
           if ( isset( $tabs['additional_information'] ) ) {
           	unset( $tabs['additional_information'] );
           }
   
           // Remove the reviews tab
           if ( isset( $tabs['reviews'] ) ) {
           	unset( $tabs['reviews'] );
           } 
   
           return $tabs;
       }
       ```
   
 * Cheers,
    Kevin.
    -  This reply was modified 7 years, 8 months ago by [yikesitskevin](https://wordpress.org/support/users/yikesitskevin/).
 *  Thread Starter [charchar](https://wordpress.org/support/users/charlenechin91/)
 * (@charlenechin91)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/override-default-tabs/#post-10652286)
 * Thanks so much for your help Kevin , Appreciate it much!
    -  This reply was modified 7 years, 8 months ago by [charchar](https://wordpress.org/support/users/charlenechin91/).
    -  This reply was modified 7 years, 8 months ago by [charchar](https://wordpress.org/support/users/charlenechin91/).

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Override default tabs’ is closed to new replies.

 * ![](https://ps.w.org/yikes-inc-easy-custom-woocommerce-product-tabs/assets/icon-
   256x256.png?rev=1558461)
 * [Custom Product Tabs for WooCommerce](https://wordpress.org/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/)
 * [Active Topics](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yikes-inc-easy-custom-woocommerce-product-tabs/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [charchar](https://wordpress.org/support/users/charlenechin91/)
 * Last activity: [7 years, 8 months ago](https://wordpress.org/support/topic/override-default-tabs/#post-10652286)
 * Status: resolved