Hi you are right to Reorder product data tabs i added this code into function.php under woodmart-child
add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
function woo_reorder_tabs( $tabs ) {
$tabs[‘additional_information’][‘priority’] = 5; // Additional information first
$tabs[‘description’][‘priority’] = 10; // Description second
$tabs[‘reviews’][‘priority’] = 15; // Reviews third
return $tabs;
}
is there better way to reoder tab ? thanks