Home › Forums › WoodMart support forum › change position of "price" in product page change position of "price" in product page This topic has 1 reply, 2 voices, and was last updated 4 years ago by Artem Temos. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts December 3, 2020 at 10:40 pm #247543 XaviParticipant 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? December 4, 2020 at 7:19 am #247596 Artem TemosKeymaster 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 Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register