Change order of Regular Price and Sales Price on Product Loop
-
Hello,
I want to change the order of how the initial price is shown up on the product loop while no variation is selected.
Now it’s: Prefix “ab” . Lowest Sales Price . Regular Price
I want it to be: Regular Price . Prefix “ab” . Lowest Sales Price.
Please see this Screenshot to clarify the issue: https://ibb.co/gR4gjzr
Thanks for your help.
Best regards,
Daniel
Hi DanielI2U,
Thanks for your patience.
Please add the following Custom CSS code to Theme Settings > Custom CSS > Custom CSS for desktop:
.wd-product .product-element-bottom > span.price{
display: flex;
flex-flow: row wrap;
}
.wd-product .product-element-bottom > span.price del.price{
margin: 0 5px 0 5px;
}
.wd-product .product-element-bottom > span.price span.amount{
order: 3;
}
But you can re-order the text because it did not place in html tags https://prnt.sc/9DuX0DzVZ12Q
Regards,