Announcement

Collapse
No announcement yet.

Allow customers to back order themselves

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

    Allow customers to back order themselves

    I have just updated stock levels on my site with associated hidden products. It is working great, and tells customers which options are out of stock.

    BUT

    It does not allow a customer to back order.

    I would like to still allow a customer to order, but I would like a notification to advise them that 1. the item is out of stock, 2. The expected delivery time (this is always the same for each item), then ask them if they still wish to add the product to their cart.

    Can this be done.

    Thanks
    Okay, I pulled the pin. Now what?... Wait!...Where are you going?

    #2
    I'd be very interested if this could be done too
    www.satellite.ie

    Comment


      #3
      Create a new variable [see help pages if unsure] settable at product level called availability.

      Then you would need to add something like this into your product template:

      Code:
      <actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsStockMonitored%22%20%2f%3e%20%3d%3d%20TRUE%29%20AND%20%0d%28%3cactinic%3avariable%20name%3d%22StockLevel%22%20%2f%3e%20%3e%3d%20%3cactinic%3avariable%20name%3d%22StockSuspendLevel%22%20%2f%3e%29" >
          Availability: In Stock
      </actinic:block>
      <actinic:block if="%28%3cactinic%3avariable%20name%3d%22IsStockMonitored%22%20%2f%3e%20%3d%3d%20TRUE%29%20AND%0d%28%3cactinic%3avariable%20name%3d%22StockLevel%22%20%2f%3e%20%3c%3d%20%3cactinic%3avariable%20name%3d%22StockSuspendLevel%22%20%2f%3e%29" >
          Availability: <actinic:variable name="Availability" />
      </actinic:block>
      If the product is out of stock, whatever text you have put in the "Availability" variable will show in place of In Stock.

      NB. This only works if the stocklevel is monitored.

      Comment


        #4
        Nice one Jon, i had been looking at this, but have had my head stuck into trying to create section layout using css and put this on the back burner, want to use extensively soon

        D

        Comment


          #5
          Add 20 to your stock levels, set the warning/suspend levels to 20 + whatever you want the warning level to be and add a condition to display a message when 20 or less are in stock to say that the item will be backordered and be available in xx weeks.

          Regards,
          Jan Strassen, Mole End

          Comment

          Working...
          X