Announcement

Collapse
No announcement yet.

Rrp

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Rrp

    Can anyone tell me how to put the RRP next to my price .

    #2
    Search the Forum for "RRP" and you'll find posts dealing with just this.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Hi there

      Taken from one of the threads:

      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.
      Kind Regards
      Nadeem Rasool
      SellerDeck Development

      Comment


        #4
        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.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X