I trying to do a fix for the following issue:
When the list price for a product is lower than our price, it shows 'you saved' with a negative amount. I'd like the msrp to only display if the amount is greater that the price.
I tried to add an if statement in the Product Variant file's load function like this:
if (m_msrp < m_price)
{
m_msrp = 0.00M;
}
but that hasn't done the job.
Can anyone help?