Advertisement
Guest User

Untitled

a guest
Oct 13th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
  2.  
  3. function woo_remove_product_tabs( $tabs ) {
  4.  
  5. unset( $tabs['additional_information'] ); // Remove the additional information tab
  6.  
  7. return $tabs;
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement