Hello,
1. I suggest you create an HTML block and define it in the “Content type” area.
https://prnt.sc/64zur_dxxtu3
The HTML block you can create via Dashboard -> HTML Blocks.
2. To reorder the “Additional tab”, please enter the below code to the functions.php file in your child theme.
if ( ! function_exists('wd_reorder_tabs' ) ) {
function wd_reorder_tabs( $tabs ) {
$tabs['wd_additional_tab_2']['priority'] = 15;
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wd_reorder_tabs', 98 );
}
In the meantime, feel free to ask me any questions you may have.
Kind Regards