Unset product tabs for specific product categories in woocommerce
问题 I am using the code coming from this answer: Hiding tabs only for some products in WooCommerce single product pages Here is that code: add_filter( 'woocommerce_product_tabs', 'conditionaly_removing_product_tabs', 98 ); function conditionaly_removing_product_tabs( $tabs ) { // Get the global product object global $product; // Get the current product ID $product_id = method_exists( $product, 'get_id' ) ? $product->get_id() : $product->id; // Define HERE your targetted products IDs in this array