change position of "price" in product page
-
I would like to change the position of the price in the product page.
I would like to show the price above the button Add to Cart.
Is it possible?
Hello,
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_action(
'wp',
function() {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 21 );
}
);
Kind Regards