fonksiyon dosyanızı yedekleyin, ardından en altına aşağıdaki kodu ekleyin.

<?php
add_action( 'woocommerce_before_single_product', 'move_product_tabs' );

function move_product_tabs() {
    remove_action( 'woocommerce_after_single_product', 'woocommerce_output_product_data_tabs', 10 );
    add_action( 'woocommerce_before_single_product', 'woocommerce_output_product_data_tabs', 10 );
}