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.
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
mrmeech
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.
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
jmarion
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
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
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']);
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!
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
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!
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?
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
Promogator
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.