At the moment I'm using the presentation tab to show the Was, Now and the Web Saving prices as
Was
<actinic:block php="true">echo "£" . number_format((1 * [ProductPriceRaw]), 2);</actinic:block><br/>
Now
<actinic:block php="true">echo "£" . number_format((0.90 *
[ProductPriceRaw]), 2);</actinic:block><br/>
Web Saving
<actinic:block php="true">echo "£" . number_format((1 * [ProductPriceRaw]) - (0.90 * [ProductPriceRaw]), 2);</actinic:block>
Is there a way though of changing the retail price that's shown as the discounted price on items with the discounts and just use the presentation tab to show the web saving? The prices are displayed inc. Vat btw.
Was
<actinic:block php="true">echo "£" . number_format((1 * [ProductPriceRaw]), 2);</actinic:block><br/>
Now
<actinic:block php="true">echo "£" . number_format((0.90 *
[ProductPriceRaw]), 2);</actinic:block><br/>
Web Saving
<actinic:block php="true">echo "£" . number_format((1 * [ProductPriceRaw]) - (0.90 * [ProductPriceRaw]), 2);</actinic:block>
Is there a way though of changing the retail price that's shown as the discounted price on items with the discounts and just use the presentation tab to show the web saving? The prices are displayed inc. Vat btw.
Comment