If you ever need to remove the Tabs from Woocommerce then you can try the following code. add_filter( ‘woocommerce_product_data_tabs’, ‘custom_product_data_tabs’ ); function custom_product_data_tabs( $tabs ) { //unset( $tabs[‘general’] ); //unset( $tabs[‘inventory’] ); unset( $tabs[‘shipping’] ); unset( $tabs[‘linked_product’] ); unset( $tabs[‘attribute’] ); unset(
Read More