Move prices field below the short description in WooCommerce

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.

Before applying snippet

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 );
After applying snippet

Edit WooCommerce Products from Frontend

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top