Zen Cart Logo
Forums / Managing Customers and Orders / Order Delivery Date Support Thread

Order Delivery Date Support Thread

Views: 162,563

Results 201 to 220 of 544
5 Sep 2009, 10:52 PM
#201
kspec1212 avatar

kspec1212

New Zenner

Join Date:
Sep 2009
Posts:
1
Plugin Contributions:
0

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.

4 Oct 2009, 3:46 AM
#202
jmarion avatar

jmarion

New Zenner

Join Date:
Jun 2009
Posts:
5
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

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:

<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>
> ```html
<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](http://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.
5 Oct 2009, 7:04 AM
#203
jmarion avatar

jmarion

New Zenner

Join Date:
Jun 2009
Posts:
5
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

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

15 Oct 2009, 8:24 PM
#204
kindbuds2k avatar

kindbuds2k

New Zenner

Join Date:
Oct 2009
Posts:
1
Plugin Contributions:
0

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

4 Nov 2009, 9:37 AM
#205
stehodges avatar

stehodges

New Zenner

Join Date:
Jun 2005
Posts:
52
Plugin Contributions:
0

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']);

3 Dec 2009, 12:11 AM
#206
jill8026 avatar

jill8026

Totally Zenned

Join Date:
May 2007
Posts:
461
Plugin Contributions:
0

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!

4 Feb 2010, 2:34 AM
#207
promogator avatar

promogator

New Zenner

Join Date:
Dec 2007
Posts:
38
Plugin Contributions:
0

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

27 Feb 2010, 4:17 PM
#208
marcysmorsels avatar

marcysmorsels

New Zenner

Join Date:
Feb 2010
Location:
New York
Posts:
3
Plugin Contributions:
0

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!

12 Apr 2010, 12:36 AM
#209
sal316 avatar

sal316

New Zenner

Join Date:
Jan 2010
Location:
CT
Posts:
4
Plugin Contributions:
0

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?

23 Apr 2010, 8:55 AM
#210
eentje avatar

eentje

Zen Follower

Join Date:
Jan 2009
Location:
The Netherlands/Germany
Posts:
144
Plugin Contributions:
4

Re: Order Delivery Date Support Thread

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.

15 Jul 2010, 12:07 PM
#211
joomdevz avatar

joomdevz

New Zenner

Join Date:
Jul 2010
Posts:
4
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

any update on the "Desired Delivery Date: Tuesday 30 November, 1999" issue, when date is not selected?

22 Jul 2010, 10:20 PM
#212
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

Does anyone have this working with Super Orders? I got the customer end working, and I tried to edit admin/super_orders.php but it is totally different then orders.php and obviously I did something wrong. In the admin, when I go to Customers-Super Orders, it gives this error:

Parse error: syntax error, unexpected '}' in /home/***/super_orders.php on line 1190

I tried playing around with that file more, but no luck, I just get errors. I know I must be missing something in the super_orders.php file, but I just don't know what. This is on a 1.3.9d store with the latest version of Super Orders.

If anyone has any suggestions I would appreciate it!

Thanks!

22 Jul 2010, 10:31 PM
#213
danielle avatar

danielle

Totally Zenned

Join Date:
Oct 2004
Posts:
973
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

Forgot to mention that if I don't edit the super_orders.php file at all, I get a blank page when I visit Customers-Super Orders.

28 Jul 2010, 8:24 PM
#214
Join Date:
Jul 2010
Location:
Findon, UK
Posts:
90
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

mrmeech:

Your database probably doesn't have the "zen_" prefix on each table.

Try the attached SQL file..

Many thanks. That helped me too.

Cheers,

Kim

2 Aug 2010, 9:55 AM
#215
Join Date:
Jul 2010
Location:
Findon, UK
Posts:
90
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

Does anyone know how to make "Order Delivery Date" and "Gift Wrapping" work together. Each of them work perfectly on their own. However, together only the last installed of them will work.

I have tried divani's various order.php files on

http://www.zen-cart.com/forum/showthread.php?t=92762&highlight=order+delivery&page=6

but it hasn't solved my problem.

I'm selling chocolate truffles so it would be very usefull to have both add-ons working at the same time.

Any help will be greatly appreciated.

31 Aug 2010, 9:43 AM
#216
trickobrien avatar

trickobrien

Zen Follower

Join Date:
Jul 2010
Posts:
108
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

Does anyone know how I can block same day order is received (if its one of the delivery days)

currently I have blocked Sat. Sun. so if someone orders on say Monday-then their first available delivery day is Tuesday

thanks in advance

6 Sep 2010, 9:52 AM
#217
trickobrien avatar

trickobrien

Zen Follower

Join Date:
Jul 2010
Posts:
108
Plugin Contributions:
0

Re: Order Delivery Date Support Thread

['24-25,31 12 *', '0 * * 0,6']

What needs to be edited to make this calendar block same day delivery?

thanks

19 Sep 2010, 3:40 PM
#218
swguy avatar

swguy

Administrator

Join Date:
Feb 2006
Location:
Tampa Bay, Florida
Posts:
10,682
Plugin Contributions:
56

Re: Order Delivery Date Support Thread

I am in the process of porting this module to 1.3.9 and will post the update to the Free Software Add Ons sometime this week.

1.3.8 users, please note: there is a bug in admin/orders.php - line 99 needs to have order_delivery_date added to the list of fields.

Scott

20 Sep 2010, 12:32 PM
#219
swguy avatar

swguy

Administrator

Join Date:
Feb 2006
Location:
Tampa Bay, Florida
Posts:
10,682
Plugin Contributions:
56

Re: Order Delivery Date Support Thread

The new version is now available in the Free Software Add Ons area.

25 Sep 2010, 8:52 PM
#220
delia avatar

delia

Totally Zenned

Join Date:
May 2006
Location:
Gardiner, Maine
Posts:
2,383
Plugin Contributions:
7

Re: Order Delivery Date Support Thread

I got a problem with the header.php.php file. It's not liking the way the delivery date session is introduced.

[25-Sep-2010 16:41:58] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/wedflow/public_html/includes/modules/pages/checkout_shipping/header_php.php:176) in /home/wedflow/public_html/includes/functions/functions_general.php on line 45

And checkout shipping does not pass the shipping fee on to the payment page.

I'm also seeing the ot tax line show up on the payment payment page where there should be nothing showing at all. the tax is 0 and there's no description so something else may be wrong.

Anybody got the newest version working with 1.3.9f?