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