Add the following code to your theme’s function.php file, or a functionality plugin to modify the position/placement of the WooCommerce Single Product Page title.
<?php
/*---Move WooCommerce Product Title*/
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_title', 5 );
Share Your Two Cents