move the price in the shop page - woocommerce

1.1k Views Asked by At

In the main shop page (archive products) in woocommerce, I would like to get the price out of over the picture and put it simply under the product picture and it's title.

Thank you for your kind help, Michal

shop page woocommerce change position of price tag

1

There are 1 best solutions below

1
On

You can try this ---

remove_action(‘woocommerce_single_product_summary’, ‘woocommerce_template_single_price’, 10);

add_action(‘woocommerce_before_single_product_summary’, ‘woocommerce_template_single_price’, 5);

You can move other information too. Source taken from this artice.