Title: Hide
Last modified: October 8, 2021

---

# Hide

 *  Resolved [anthonyb04](https://wordpress.org/support/users/anthonyb04/)
 * (@anthonyb04)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/hide-24/)
 * I would like to hide the ‘additional information’ part of the product caracteristics–
   while keeping the other tabs (description…).
 * I tried this code :
 *     ```
       //Remove the additional information tab
       function woo_remove_product_tab($tabs){
       	unset($tabs['additional_information']);
       	return $tabs;
       }
       add_filter('woocommerce_product_tabs','woo_remove_product_tabs',98);
       ```
   
 * But it basically delete all the tabs (description, reviews…)
 * Thanks again & forever 😀

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

 *  [taha.tr](https://wordpress.org/support/users/dmrhn/)
 * (@dmrhn)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/hide-24/#post-14954920)
 * Hi [@anthonyb04](https://wordpress.org/support/users/anthonyb04/) I tried the
   code you provide works on my end, can you try the code like this without function
   name to avoid possible name conflicts;
 *     ```
       add_filter( 'woocommerce_product_tabs', function ( $tabs ) {
           unset( $tabs['additional_information'] );
           return $tabs;
       }, 99 );
       ```
   
 *  Thread Starter [anthonyb04](https://wordpress.org/support/users/anthonyb04/)
 * (@anthonyb04)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/hide-24/#post-14955852)
 * Thanks you are right it works now !
    Don’t know what was wrong in the function
   but still it works 😀 Thanks to you

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

The topic ‘Hide’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/blocksy/2.1.44/screenshot.jpg)
 * Blocksy
 * [Support Threads](https://wordpress.org/support/theme/blocksy/)
 * [Active Topics](https://wordpress.org/support/theme/blocksy/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/blocksy/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/blocksy/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [anthonyb04](https://wordpress.org/support/users/anthonyb04/)
 * Last activity: [4 years, 8 months ago](https://wordpress.org/support/topic/hide-24/#post-14955852)
 * Status: resolved