Thread: Quick Order

Page 4 of 6 FirstFirst ... 23456 LastLast
Results 31 to 40 of 54
  1. #31
    Join Date
    May 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Quick Order

    Does anyone have this running on version 1.3.8a. I installed everything as per the folder structure and all I'm getting is

    Order Online
    Name/Model Quantity

    fields to show up. There is no form to fill in. I tried it both ways; logged in as a customer and not

  2. #32
    Join Date
    Feb 2008
    Posts
    27
    Plugin Contributions
    0

    Default Re: Quick Order

    Quote Originally Posted by nowie View Post
    Thank you for this wonderful mod. This is virtually what I was looking to do.

    Question: I would like for customers to be able to type in either model numbers OR product names in the input fields. In this particular case, all model numbers and product names will be unique. I've tried modifying the header_php.php file at line 123 without success as I have limited php/sql experience. Could someone possibly offer some suggestions in achieving this?

    Here is line 123 of header_php.php:
    PHP Code:
    $next_product_id mysql_query(sprintf('select p.products_id, p.products_model from %s AS p where (p.products_model = \'' implode("' OR p.products_model = '"$qo_item_info['model']) . "')"$db->prepare_input(TABLE_PRODUCTS)), $db->link); 
    Hi, i use: zencart 1.38a, QO 1.2.3, QO settings:
    define('QO_INPUT_ROWS', 1);
    define('QO_MODELS_MUST_BE_CASE_SENSITIVE', false);
    define('QO_SIMILAR_MATCHES_LIMIT', 1);
    define('QO_SIMILAR_MATCHES_ORDER_BY', true);

    I also wanted to the input to be by another field (barcode)
    i managed to do this by the folowing:
    /includes/modules/pages/quick_order/header.php line 123
    my code added is in red
    Code:
    // if at least one model was entered
    			if ($total_models > 0) {
    				$barcode = "select products_model from products where products_barcode = '".$qo_item_info['model'][0]."'";
    				$barcode_values = $db->Execute($barcode);
    				$qo_item_info['model'][0] = $barcode_values->fields['products_model'];
    				// get the selected products
    				$next_product_id = mysql_query(sprintf('select p.products_id, p.products_model from %s AS p where (p.products_model = \'' . implode("' OR p.products_model = '", $qo_item_info['model']) . "')", $db->prepare_input(TABLE_PRODUCTS)), $db->link);
    				while ($row = mysql_fetch_array($next_product_id)) {
    					$next_product_id_array[$row['products_model']] = $row['products_id'];
    					$next_product_id_array_i[strtolower($row['products_model'])] = $row['products_id'];
    				}
    what i did:
    my input field from the form is the actual barcode off my product(you have to have defined the barcodes previosly to use this), as QO searcehes for the product model, with my code in red i change the barcode to the model off the product.

    Best regards Zoli.

  3. #33
    Join Date
    May 2010
    Posts
    79
    Plugin Contributions
    0

    Default Re: Quick Order

    any updates on quick order for the newest zen cart?

  4. #34
    Join Date
    Mar 2005
    Location
    United Kingdom
    Posts
    608
    Plugin Contributions
    0

    Default Re: Quick Order

    Just an update to this old thread as it may help someone.

    I've just installed Quick Order V1.2.3 on Zen V1.3.9h without any problems.

  5. #35
    Join Date
    Mar 2011
    Posts
    1
    Plugin Contributions
    0

    Default Re: Quick Order

    Hi,

    I would like to implement "Quick order" into a sidebox to have it on each page in the left side. I put the php code into a new sidebox but it works only on quick_order page.
    For the other pages, it shows only: TEXT_QO_NAME_MODEL TEXT_QO_QTY.
    Can anyone tell me what to do to make it work?

  6. #36
    Join Date
    Jun 2011
    Posts
    1
    Plugin Contributions
    0

    Default Re: Quick Order

    Hi i have downloaded quick_order_1-2-3. i want to use this into my zencart based portal. could you please tell me step by step process how to install it in my zencart. thank u.

  7. #37
    Join Date
    Dec 2006
    Posts
    19
    Plugin Contributions
    0

    Default Re: Quick Order

    any news on whether this works w/ ZC 1.5?

  8. #38
    Join Date
    Aug 2012
    Location
    Medford Oregon USA
    Posts
    44
    Plugin Contributions
    0

    Default Re: Quick Order

    What is a valid Model Number?

    This is giving me an error?

    http://web-mobile-cart.com/dir/index...arkets&qty_1=1

    ERROR_NOT_VALID_MODEL_NUMBER
    TEXT_QO_MODEL

    it is accepting the product name and order qty

    1 (this is not valid ?) Recycled Water Markets 1

  9. #39
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,682
    Plugin Contributions
    11

    Default Re: Quick Order

    @westdh
    It appears you've improperly loaded the mod. But, we could help better if you answered the posting tips.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  10. #40
    Join Date
    Aug 2012
    Location
    Medford Oregon USA
    Posts
    44
    Plugin Contributions
    0

    Default Re: Quick Order

    I am trying to install Quick Order Version 1.2.3, i am running zen-cart v1.5. also I see I am picking up the Product name and Qty. Why, I am not picking up the Model Number I do not know. It is 2/3 working so maybe I missed something on setting it up, bur where?

 

 
Page 4 of 6 FirstFirst ... 23456 LastLast

Similar Threads

  1. v154 Quick Order - How to change sort order?
    By anduril3019 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 20 Jun 2015, 09:09 PM
  2. v138a Quick Re-order aka order_history.php history beyond last order
    By beyerg in forum Customization from the Admin
    Replies: 1
    Last Post: 24 Jan 2012, 11:14 PM
  3. Quick Order
    By medgollc in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 27 Dec 2010, 06:20 PM
  4. Quick Re-order
    By LoriW. in forum Upgrading from 1.3.x to 1.3.9
    Replies: 2
    Last Post: 30 Sep 2007, 07:17 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