Want to make changes in a single product layout by changing the display position of a price. In the below image you can see by default the price of the product displayed above the short description.
Now let’s rearrange the single product layout by adding the price field below the short description. The snippet helps to customize the layout as per your requirement or your user’s need to change the layout structure. Add this to your function.php file in the child theme.
remove_action('woocommerce_single_product_summary','woocommerce_template_single_excerpt', 20 );
add_action('woocommerce_single_product_summary','woocommerce_template_single_excerpt', 9 );