How to order product tabs in single product view?
add_filter( 'woocommerce_product_tabs', 'reordered_wc_tabs', 98 );
function reordered_wc_tabs( $tabs ) {
if (!empty($tabs))
{
$tabs['description']['priority'] = 5;
return $tabs;
}
}
