Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Removing the additional information tab using PHP code snippet

/** Remove product data tabs */
 
add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 );
 
function my_remove_product_tabs( $tabs ) {
  unset( $tabs['additional_information'] ); // To remove the additional information tab
  return $tabs;
}
Source by usersinsights.com #
 
PREVIOUS NEXT
Tagged: #Removing #additional #information #tab #PHP #code #snippet
ADD COMMENT
Topic
Name
7+3 =