Announcement

Collapse
No announcement yet.

products with out prices

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

    products with out prices

    i have a few products on my store with out prices on.

    when they are added to a shopping basket, it displays the price as '--'.

    is it possible to change the '--' to read 'to quote' or something similar?

    Thanks

    Martin

    #2
    Do you have products with prices also. Changing the shopping mode can stop the cart pages being displayed.
    Owner of a broken heart

    Comment


      #3
      yes i do so would just like to say quote really if possible

      Comment


        #4
        Edit ActinicOrder.pm (back it up first) and look for the lines
        Code:
        			$sPrice = $CurrentItem{'PRICE'} ? $CurrentItem{'PRICE'} : "--";
        			$sCost  = $CurrentItem{'COST'}  ? $CurrentItem{'COST'}  : "--";
        Change them to
        Code:
        			$sPrice = $CurrentItem{'PRICE'} ? $CurrentItem{'PRICE'} : "quote";
        			$sCost  = $CurrentItem{'COST'}  ? $CurrentItem{'COST'}  : "quote";
        Norman
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          just the job that

          thanks for your help

          Comment

          Working...
          X