I'm using code to custom product tabs order.
add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 );
function reordered_tabs( $tabs ) {
$tabs['additional_information']['priority'] = 10;
$tabs['description']['priority'] = 20;
$tabs['reviews']['priority'] = 25;
return $tabs;
}
This is working fine but there is a issue > if I'm leaving blank(no content) in any tab for any Product > then it is showing blank area for tab > https://prnt.sc/lb3d0z