Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 13, 2021 04:36
Show Gist options
  • Select an option

  • Save wbcomdev/ddd4294fb4ae8fe1cccc26c98691e6e0 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/ddd4294fb4ae8fe1cccc26c98691e6e0 to your computer and use it in GitHub Desktop.
/**
* Remove product data tabs.
*/
function wb_woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] ); // Remove the description tab.
unset( $tabs['reviews'] ); // Remove the reviews tab.
unset( $tabs['additional_information'] ); // Remove the additional information tab.
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wb_woo_remove_product_tabs', 98 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment