Hi,
I need to change how the price section appears on product page. Like I would like to showcase the percentage off and difference in money between MRP and sale price. Please check the Screenshot for better understanding.
This topic has 4 replies, 3 voices, and was last updated 4 years, 5 months ago ago by Rose Tyler
Hi,
I need to change how the price section appears on product page. Like I would like to showcase the percentage off and difference in money between MRP and sale price. Please check the Screenshot for better understanding.
Hello,
To change the order of the sale price and regular price add the below code to Theme Options > Custom CSS
.product-content .price {
display: flex;
}
.product-content .price del {
order: 2;
padding-left: 10px;
}
Displaying “You save…” requires PHP customization or third-party plugin because we don’t have such option in our theme.
Regards
Hi,
This is not working. It still shows the order of the sale and regular price like before. Can you check?
Hello,
Please change the code to:
.single-product .et_product-block .price {
display: flex;
}
.single-product .et_product-block .price del {
order: 2;
padding-left: 10px;
padding-top: 5px;
}
Regards
The issue related to '‘Change pricing format on Product page’' has been successfully resolved, and the topic is now closed for further responses