Site logo

Archived topic

Move Add To Cart Button Woocommerce Above Decription

6 replies · Started by Pandu Aji on December 5, 2022

Viewing posts 1–7 of 7

Hi, i want to move add to cart button in one page above the short description. How to make it possible?

img-1707

I see. Can you try adding this through Appearance > Customize > Additional CSS:

.single-product .summary.entry-summary {
    display: flex;
    flex-direction: column;
}

.single-product .summary.entry-summary form.cart {
    order: -2;
}

.single-product .summary.entry-summary h1.product_title.entry-title {
    order: -4;
}

.single-product .summary.entry-summary p.price {
    order: -3;
}

.single-product .summary.entry-summary p.stock.in-stock {
    order: -1;
}

Great! Thank you, but the stock still in the below product description. how to move them to the top of add to cart button?

I see. I updated the code above. Can you try that instead?

It's great! Thank you for helping me!

This archived topic is closed to new replies.