This topic has 4 replies, 2 voices, and was last updated 4 years, 11 months ago ago by Rose Tyler
Dear team, Is possible to move “product sale conunter” under “price” in single product page ? Bst. rgds.
Hello,
Thanks for contacting us.
Could you, please, provide a URL?
Regards
Hello
Hello,
Add this code in Theme Options > Theme custom CSS:
.single-product .fixed-content {
display: flex;
flex-direction: column;
}
.single-product .product-content .product_title {
order: 1;
}
.single-product .product-content .price {
order: 2;
}
.single-product .product-information .product-sale-counter {
order: 3;
}
.single-product .product-content .woocommerce-product-rating {
order: 4;
}
.single-product .product_meta {
order: 5;
}
.single-product .product-information .woocommerce-product-details__short-description {
order: 6;
}
.single-product .product-information .cart {
order: 7;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up