@Glare;

Aşağıdaki kodu temanızın functions.php dosyasına ekleyin.

add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 );
function reordered_tabs( $tabs ) {
    $tabs['description']['priority'] = 1; 
    return $tabs;
}