Created
April 22, 2022 08:29
-
-
Save bradleysa/ee22f6f2186bad361ec0d3c6b49f517c to your computer and use it in GitHub Desktop.
WC: Remove "Additional information" Tab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Remove the additional information tab | |
function quadlayers_remove_product_tabs( $tabs ) { | |
unset( $tabs['additional_information'] ); | |
return $tabs; | |
} | |
add_filter( 'woocommerce_product_tabs', 'quadlayers_remove_product_tabs', 98 ); | |
/** https://quadlayers.com/remove-additional-information-tab-in-woocommerce/ **/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment