Hello,
The code below should help you with it, please enter it to the functions.php
file in your child theme.
/**
* Reorder product data tabs
*/
add_filter( "woocommerce_product_tabs", "woo_reorder_tabs", 98 );
function woo_reorder_tabs( $tabs ) {
$tabs["description"]["priority"] = 5; // Description first
$tabs["woodmart_custom_tab"]["priority"] = 10; // WooDmart Custom second
$tabs["woodmart_additional_tab"]["priority"] = 15; // WoodMart Additional information third
$tabs["reviews"]["priority"] = 20;
return $tabs;
}
Kind Regards