Page 21 of 55 FirstFirst ... 11192021222331 ... LastLast
Results 201 to 210 of 543
  1. #201
    Join Date
    Sep 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Awesome mod.

    Let's say I ONLY want the delivery date option to show up when a customer selects delivery (i.e. somehow I'd like to tie it to a shipping option, becuase that delivery shipping option only shows up when they are in the right location for delivery. Can anyone point me in the right direction to make that happen?

    Thanks.

  2. #202
    Join Date
    Jun 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by mrmeech View Post
    KyLi,

    You're loading Mootools twice -- the first time in the head tag that it loads is where it's supposed to be for the delivery date mod to function. This is all good:


    HTML Code:
    <script type="text/javascript" src="includes/modules/pages/checkout/jscript_a-mootools.js"></script>
    <script type="text/javascript" src="includes/modules/pages/checkout/jscript_b-calendar.js"></script>
    <script type="text/javascript">
    window.addEvent('domready', function() { myCal = new Calendar({ date: 'Y-m-d' }, { blocked: ['24-25,31 12 *', '0 * * 0'], direction: 3, draggable: false }); });
    </script>
    But further down in your head tag you also have this:
    HTML Code:
    <script type="text/javascript" src="js/mootools.js"></script>
    The reason that the order delivery date has "a" and "b" in those two JS files is because if mootools loads after calendar.js it will not work. I suspect that that might be the problem.

    I have been using Zen-Cart for a few months now. I installed this module and cannot get it to work correctly:

    Here is my issue (it is similar to above):

    I can see the date field (a white bar) and the icon with the calendar on it, but I cannot manually input a date or get the icon to work.

    When I hover over the icon I get the white hand to show it is a 'link' but nothing happens.

    I have read the module instructions and this thread, but I cannot find a solutions.

    If anyone can help I would appreciate it.

    my site is www.YourEngravingSolution.com... if you create a dummy order to see how this works, please put a comment in the order that this is a test or something.

  3. #203
    Join Date
    Jun 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by jmarion View Post
    I have been using Zen-Cart for a few months now. I installed this module and cannot get it to work correctly:

    Here is my issue (it is similar to above):

    I can see the date field (a white bar) and the icon with the calendar on it, but I cannot manually input a date or get the icon to work.

    When I hover over the icon I get the white hand to show it is a 'link' but nothing happens.

    I have read the module instructions and this thread, but I cannot find a solutions.

    If anyone can help I would appreciate it.

    my site is www.YourEngravingSolution.com... if you create a dummy order to see how this works, please put a comment in the order that this is a test or something.

    I was able to solve the above problem...

    I do not know the detials, but I installed and then uninstalled attribute module to allow products quantities by attribute. I did not need the module so I uninstalled it, but in doing this process i modifiy my header_php.php in my checkout_shipping folder and it caused the calendar to work.

    thanks

  4. #204
    Join Date
    Oct 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Hi I am using this mod and it is working very nicely, thank you. However I was wondering if there is a way to make it so my customers are only able to select up to a week after today's date.

    Thank you for any help.

    Jordan

  5. #205
    Join Date
    Jun 2005
    Posts
    89
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    The only change I've had to apply to this so far is to the admin pages (order.php/invoice.php/packingslip.php) to handle orders where the customer hasnt selected a delivery date.

    Wherever the delivery date is displayed (e.g. echo zen_date_long($order->info['order_delivery_date']))

    I've changed to:

    if ($order->info['order_delivery_date']=='0000-00-00' || strlen($order->info['order_delivery_date'])==0) echo "Not Entered"; else echo zen_date_long($order->info['order_delivery_date']);

  6. #206
    Join Date
    May 2007
    Posts
    471
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Is there any way to have the orders in the super orders admin sort by delivery date? Would love to be able to see the delivery dates instead of date ordered so that we can easily see when we need to ship something out without going into each order separately....Thanks!
    Jill || I Love Zen Cart Templates || 2 Dogs Design
    I Love To Help But Let's Keep It Public Please To Help Others!

  7. #207
    Join Date
    Dec 2007
    Posts
    38
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    I have been trying to get this mod going i installed the correct files but keep gettting this error after i put in the SQL file..


    1146 Table 'sendamar_zc7.zen_zen_orders' doesn't exist
    in:
    [show fields from zen_zen_orders]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    please help

    message me thanks

  8. #208
    Join Date
    Feb 2010
    Location
    New York
    Posts
    3
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Hello I am Zen Newb. Version of ZC is up to date. When my customers do not select a desired delivery date when they check out on the invoice and packing slip it reads November 30, 1999. Is there a fix for this that anyone knows about?

    Example:
    Date Ordered: Wednesday 24 February, 2010
    Desired Delivery Date: Tuesday 30 November, 1999
    Payment Method: PayPal

    Thanks!

  9. #209
    Join Date
    Jan 2010
    Location
    CT
    Posts
    4
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Been running this mod for awhile, really like it. Is there a way to disable next day if it is after 12pm?

    Or, on Sat or Sun, disable Monday as a delivery date?

  10. #210
    Join Date
    Jan 2009
    Location
    The Netherlands/Germany
    Posts
    142
    Plugin Contributions
    12

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by Promogator View Post
    I have been trying to get this mod going i installed the correct files but keep gettting this error after i put in the SQL file..


    1146 Table 'sendamar_zc7.zen_zen_orders' doesn't exist
    in:
    [show fields from zen_zen_orders]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    please help

    message me thanks
    in de sql query delete the first zen_

    That should do the trick.
    I came, I saw, I got zenned... :)

 

 
Page 21 of 55 FirstFirst ... 11192021222331 ... LastLast

Similar Threads

  1. order delivery date addon - date not showing in checkout
    By jagall in forum Addon Shipping Modules
    Replies: 4
    Last Post: 19 Oct 2017, 09:09 PM
  2. JK Order Exporter - Support Thread
    By eVelt in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 26 Sep 2015, 07:06 AM
  3. v151 Order Delivery date on Product Info Page
    By nicksab in forum General Questions
    Replies: 0
    Last Post: 30 Dec 2013, 03:23 AM
  4. Support Thread for JS Date Picker for options
    By eVelt in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 5 Dec 2013, 05:44 AM
  5. Order Delivery Date Mod
    By fagriffin in forum Addon Shipping Modules
    Replies: 1
    Last Post: 11 Oct 2008, 04:50 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR