Archived topic
Move Price below Short description
3 replies · Started by Oliver on November 18, 2020
Viewing posts 1–4 of 4
Hi team,
Loving GeneratePress Pro so far.
Quick question - would it be possible to add a way to rearrange the layout of the Single product page?
I would like to move the product price to below the short description.
Many thanks
Hi there,
most of the elements in the Woocommerce plugin templates are attached using Hooks. So you could add this PHP Snippet to move the Summary above the Price:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 9 );
You're a legend David, many thanks!
Glad to be of help!
This archived topic is closed to new replies.