Hello,
To remove the additional information tab, Add this code to the Theme Settings > Custom CSS > Global:
li.additional_information_tab {
display: none;
}
The code below will help you to reorder the tabs. Please try to add the code below in 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['reviews']['priority'] = 1; // Reviews first
$tabs['description']['priority'] = 2; // Description second
// Additional Tabs are from Theme Settings
$tabs['wd_additional_tab']['priority'] = 3;
$tabs['wd_additional_tab_2']['priority'] = 4;
return $tabs;
}
Please follow this guide:
https://woocommerce.com/document/editing-product-data-tabs/
Best Regards.