Tagged: woocommerce
Hi, trying to move the price to below the product short description in woocommerce. I’ve searched all the forums and see I need help with the config.php file. Can you help with this adjustment? Thank you.
Hey briantduncan,
Thank you for using Enfold.
Add this code in the functions.php.
// move product price
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 );
That code should move the product price below the description.
Best regards,
Ismael
Perfect – Thank you sir!