Hello,
Here is a custom PHP code for reordering the additional tab, please try to add it to the functions.php file in your child theme.
if ( ! function_exists('wd_reorder_tabs') ) {
function wd_reorder_tabs( $tabs ) {
$tabs['additional_information']['priority'] = 10;
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wd_reorder_tabs', 98 );
}
If that won’t help you, please provide your site admin access to the private area. I will do my best to help you.
Kind Regards