The suggestion I do have though is to create a new custom property in 'Advanced | Custom Properties' called 'RRP'. Then you can go into each product, go into the 'Properties' tab and create a new row. Select 'RRP' from the drop-down and then enter the RRP into the Value field. You can then edit the product layout template and type CUSTOMVAR:RRP wherever you want the RRP to appear.
And you can also put the CUSTOMVAR:RRP into Act_ProductPruce.html if you want it next to the price.
You can make this a little more elegant by adding some JavaScript so that formats the RRP and only displays the accompanying test if CUSTOMVAR:RRP is defined. E.g. Put this where you would have put the CUSTOMVAR:RRP
Code:
<script language=JavaScript>
<!--
if ('CUSTOMVAR:RRP') document.write('<font color=gray>RRP <s>£CUSTOMVAR:RRP</s></font>');
//-->
</script>
and you'll get a struck-out grey RRP £12.34 if you've put 12.34 into CUSTOMVAR:RRP.
Comment