Site logo

Archived topic

Woocommerce full description positon

3 replies · Started by David on June 11, 2020

Viewing posts 1–4 of 4

Hello

I've added this to my functions file to move the price above the short description...

remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 15);

Which worked but now the full description sits under the categories list, how can I get it to break so it's underneath the product images?

https://www.savage-beauty.co.uk/product/test-product-2/

Thanks
Dave

Hi there,

try this CSS:

.woocommerce div.product div.summary + h2 {
    clear: both;
}

Thanks David

You're welcome

This archived topic is closed to new replies.