This topic has 2 replies, 2 voices, and was last updated 9 years, 7 months ago ago by Brian Johnson
I have been trying to move items around in the single product page but I cannot find a way.
I want to move the price to below the product summary (excerpt). I have edited the hooks values and nothing. And I cannot find where to move the divs around.
Any idea?
Hello
You may add following lines to the functions.php of the Child Theme:
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10);
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 10);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 15);
Child theme is already included in theme package.
With best regards
Brian Jhnson
Tagged: e-commerce, move items, shopping cart, single-product page, template, woocommerce, wordpress
You must be logged in to reply to this topic.Log in/Sign up