Move related products after product summary? [closed]

Related Product Section is already in the woocommerce_after_single_product_summary hook.
Now You need to change the priority. Related Products Priority is given: 20
If You want to show it before product tab section, then you have to make the priority less than 10. such as 9

    /**
     * Hook: woocommerce_after_single_product_summary.
     *
     * @hooked woocommerce_output_product_data_tabs - 10
     * @hooked woocommerce_upsell_display - 15
     * @hooked woocommerce_output_related_products - 20
     */
    do_action( 'woocommerce_after_single_product_summary' );

Let’s see how to change the priority.
First of all, I have removed the default priority of related_products.

remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);

Finally, I have reset the pririty as 9.

add_action('woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 9);