Add the following code to your theme’s function.php file, or a functionality plugin to move the price under the excerpt in the short description on the WooCommerce shop page.
<?php
/**
* Move Price Under Excerpt in Short Description
*/
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 );
Share Your Two Cents