Thread: Pre-Order

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Apr 2016
    Location
    Brisbane
    Posts
    7
    Plugin Contributions
    0

    help question Pre-Order

    I am wanting to know how to add a product as a 'pre-order'. I am wanting customers to be able to select and pay for an item but the items isn't in stock yet, it is being 'pre-ordered', how do I do this?
    My site is www.melaniesholistichealing.com

    Thank you

  2. #2
    Join Date
    Dec 2008
    Location
    New Zealand
    Posts
    88
    Plugin Contributions
    1

    Default Re: Pre-Order

    Settings:
    Admin, Configuration, Stock, Allow Checkout, true
    Will allow people to purchase a product which is out of stock.

    There is a plugin called "Ceon Back In Stock Notifications" which allows people to sign up to be emailed when a product is back.

  3. #3
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Pre-Order

    An alternative option is to set the number available to a known ridiculous quantity until the item is truly in stock making the description of the product clear that it is a pre-order...

    Really a pre-order is nothing more than selling the product when the product is not physically available. The hard part comes from having to track the sales for later when the product arrives as all the pre-orders need to find their appropriate destination.

    What is special or the concern about trying to setup pre-order status for your product?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #4
    Join Date
    Apr 2016
    Location
    Brisbane
    Posts
    7
    Plugin Contributions
    0

    help question Re: Pre-Order

    Quote Originally Posted by mc12345678 View Post
    An alternative option is to set the number available to a known ridiculous quantity until the item is truly in stock making the description of the product clear that it is a pre-order...

    Really a pre-order is nothing more than selling the product when the product is not physically available. The hard part comes from having to track the sales for later when the product arrives as all the pre-orders need to find their appropriate destination.

    What is special or the concern about trying to setup pre-order status for your product?
    I actually have done this. Set up normal products but made it known in the description that they are pre-orders only. I've just noticed though, that it shows people that they are in stock and shows the quantity. This is really what I wanted changed. I don't want any stock to show but I can't find how to delete 'availability'.

  5. #5
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Pre-Order

    Do you want to remove quantity availability from just these pre-order products or all products?

    In the end it would require a sql statement to modify, but you could setup the presale product as product type document-general where the quantities available are hidden for document-general product type, then when the product does come into availability it can be changed over to a product-general product type using a sql command in tools->install sql patches.

    Or you could code to exclude display of the product quantity availability for particular products or products in particular categories. Or you could use css to visually hide the available quantity (html through view source would still have the available quantity present.)

    The sql command to change the product type of the product having products_id=5 back to product-general is:
    Code:
    UPDATE products set products_type = 1 WHERE products_id = 5;
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Pre-Order

    To change the current product (assuming already setup and the reason for this question) to the document-general product type, a similar sql command would be run:

    Code:
    UPDATE products set products_type = 3 WHERE products_id = 5;
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #7
    Join Date
    Apr 2016
    Location
    Brisbane
    Posts
    7
    Plugin Contributions
    0

    Default Re: Pre-Order

    I just need the products in the 'pre-order' section to not have the availability showing. The rest of the products throughout the site can stay with stock showing.

  8. #8
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Pre-Order

    Quote Originally Posted by MELSHH View Post
    I just need the products in the 'pre-order' section to not have the availability showing. The rest of the products throughout the site can stay with stock showing.
    Okay, then any of the above suggestions could be implemented to accomodate that goal. It depends mostly on the knowledge of the individual, the ability to follow instructions and/or maintain notes, the acceptance of the "result, and/or the frequency/repeatability of doing this type of setup/modification.

    The method easiest at the moment for someone with admin access only (non-ftp) is the change to/from product types. A product type can be edited to not display (and to also not provide meta-tag info) the available quantity: catalog->product types->edit layout modify the settings for the product type in question.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #9
    Join Date
    Apr 2016
    Location
    Brisbane
    Posts
    7
    Plugin Contributions
    0

    Default Re: Pre-Order

    Thank you!!!! Very much appreciated. Has helped a lot.

  10. #10
    Join Date
    Aug 2005
    Location
    Bondi, Australia
    Posts
    100
    Plugin Contributions
    0

    Default Re: Pre-Order

    Hi I've got a similar problem but an inverse intent.

    I'm converting a website to zencart that sells just two or three products. The main product is renewed annually and the (loyal) client base is used to ordering at the beginning of the year and waiting six to nine months for delivery - no, not a baby ;-). Part of the ordering process includes taking credit card details that are then emailed to the fulfilment house which holds onto them until delivery time and then initiates the transaction. Clearly this is not best practice.

    What I'm looking for is to take orders but not credit card details and then when delivery is imminent email the customer with the order and the account login details and suggest they come back and complete the payment. I don't think zen cart has a concept of suspended payment as such, but thought a Purchase Order plugin would be a partial solution. The challenge is to avoid the account creation process as the clients are not good at managing passwords etc. I'm particularly keen to avoid complicating their life by introducing a multipage ordering process where a single page email form has until now sufficed.

    Any suggestions?

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v154 Pre order?
    By Miru in forum Setting Up Specials and SaleMaker
    Replies: 2
    Last Post: 13 Nov 2015, 09:51 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg