Thanks so much for that norman, that will carve hours of work out. It works fantastically. Well Done, also, ill be in touch in the next few days re your lightbox addon. Many thanks again,
Matt
Matt
<actinic:block php="true"> $rrp = <actinic:variable name="RRP" selectable="false" />; $rawprice = <actinic:variable name="ProductPriceRaw" selectable="false" />; $rawprice = $rawprice * 1.175; // add in vat if showing VAT inc prices // only display is we have an RRP and there's a saving to show if ( ($rrp != 0) && ($rrp > $rawprice) ) { $savepercent = round((($rrp - $rawprice) / $rrp) * 100); echo "RRP £$rrp - you save $savepercent%"; } </actinic:block>
Comment