WooCommerce: change display order of product short description and price [closed]
IT Nursery
April 10, 2022
0
I’d like to move the price “$4.99–$24.99” below the product short description “Seriously. Drink a cup of this…”
NSFW Image Below ( Adult Language )
Any ideas how to do this? I already have a child theme, but I’m not sure what WooCommerce file needs to be overridden.
1
If you look at woocommerce/templates/content-single-product.php you’ll see that the product summary is constructed using hooks with different priorities.
The price has a priority of 10, the excerpt has a priority of 20. To swap them around, change the priorities by modifying the actions in your child theme’s functions.php.