Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
bindaaz
I got this mode working in version 1.5.0. I also applied the fix suggested by "Ooba_Scott". So not this seems to be working in all browsers now. Let me know if someone need the files.
Just installed 1.5. Could you send me the files?
Re: Order Delivery Date Support Thread
Is there work being done on updating this plugin to support ZC 1.5? Looking to upgrade a site that depends on the ability for customers to request a delivery date.
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
Ooba_Scott
I was having the same issue as other people with regards to the order date picker not working in IE9 ......
The fix that was issues a few posts back, by changing some bits in the mootools file ...... this is fine and fixes it for IE9, but it will then make it not work in Firefox, and it will not work correctly in Chrome (it will move you onto the next page if you click the calendar icon!)
The way we have got around it, is to force IE9 to behave like IE8 .....
To do this you need to add the following code into your html_header.php file (includes/templates/your_template/common/html_header.php)
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >
This needs to to be the first tag within the <head> tag ....... even before the <title> tag!
This will then make IE9 behave like IE8 and your calendar should then work as it used to!
:) hope this is of help to someone!
thank you sooo much! you're a genius... totally fixed my problem! hopefully anyone else who has issues with the calendar working in IE9 sees your solution. thanks again!
Re: Order Delivery Date Support Thread
Is it possible to show the calendar directly on the cart page, instead of having it function as a pop-up? I would prefer for it to be on the page itself so that there is no confusion on the part of the shoppers, and also for aesthetic reasons.
Also, would it be possible to do one of the following?
1. Show two calendars on the cart page, and designate one for "local" delivery and the other for "national" delivery?
or...
2. Dynamically display the "local" calendar when the store's state is selected as the delivery state (New York) and show the "national" calendar when any other state is selected? (Ideally, this would be based on zip code geolocation, but I'd imagine that would be waaaaaay too much to ask... but feel free to let me know if I am wrong ;) ).
Thanks!
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
mrmeech
Hey Steve,
I have been aware of this issue where when no date is selected, it reflects as being entered from 1999 or something weird, but i have been lax on updating this, and i apologize.
With regard to your changes listed above, you have edited core functions that zen cart also uses in other various places. So, while you may have fixed the display with order delivery date, you may have broken another part of the application.
In my last response from a few minutes ago regarding your first issue listed, i said that i would test the session fix within the next day or so. I will also try to write a new function JUST for order delivery date to address this issue. :smile:
I'm still having this Tuesday 30 November, 1999 issue... Can't seem to find a fix anywhere. Was it ever posted?
Thanks!
Re: Order Delivery Date Support Thread
Hi, I hope you can help me. I have created a site for a customer, www.theflowershoppe.co.uk, version 1.3.9 h. All worked fine until we added the required Cookie Control (got it on this site: http://civicuk.com/cookie-law/updates/Joomla). The calendar will no longer show up during checkout. When I remove the cookie control, the calendar works. Do you possibly have any suggestions on how can I have both working?
Re: Order Delivery Date Support Thread
Is there a time included version? I'm setting it up to be used as a store pickup date/time.
Re: Order Delivery Date Support Thread
I have used this module for a pick-up date and time.
I've managed to get a time field and it does work...except I'm having an issue with the display of the time on the checkout confirmation page. it's showing up as this:
Desired Pick-up Date
Thursday 16 August, 20121345146906
I created a function for the time as such:
function zen_time($raw_time) {
if ( ($raw_time == '00:00:00') || ($raw_time == '') ) return false;
$hour = substr($raw_time, 11, 2);
$minute = (int)substr($raw_time, 14, 2);
$second = (int)substr($raw_time, 17, 2);
return time(TIME, mktime($hour, $minute, $second));
}
Then in the tpl_checkout_confirmation_default.php file I put
<?php echo zen_time($order->info['order_delivery_time']); ?></h4><br />
Now it IS working great for putting the time into the db. That page is the only place it shows up funky.
I know someone out there can tell me what I'm doing wrong.
Re: Order Delivery Date Support Thread
Does anyone know how to put this on the product_info page?
What about adding a time feature, like mentioned in the above reply?
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
Beatzangel
thank you sooo much! you're a genius... totally fixed my problem! hopefully anyone else who has issues with the calendar working in IE9 sees your solution. thanks again!
This works also for me except if IE9 goes back to IE8 my template design is missing al the extra CSS design things compatible with IE9???
Hopefully someone has a real sollution to make it work in IE9
thanx
dre