Home Forums WoodMart support forum change position of "price" in product page

change position of "price" in product page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #247543

    Xavi
    Participant

    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?

    #247596

    Artem Temos
    Keymaster

    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

Viewing 2 posts - 1 through 2 (of 2 total)