Re: Order Delivery Date Support Thread
Alright!! So, i've found a bug with Order Delivery Date that happens when a customer checks out with the Paypal Integrated Checkout method.
Basically, when the order email is generated upon successfully completing the paypal payment, the email define "EMAIL_TEXT_DELIVERY_DATE" is not translating to the value set in the language file. The delivery date still makes it to the email OK, but the email prints out as above: EMAIL_TEXT_DELIVERY_DATE
I just started looking into the issue, but if anyone has any idea what could be causing this, please let me know. I would venture to bet that this has to do with a paypal data array somewhere. As I don't have a comprehensive understanding of the data flow with PayPal, i might need someone else to point me in the right direction with this one...
It's gotta be something simple - 9 out of 10 times it is. :smile:
Re: Order Delivery Date Support Thread
mrmeech,
Thanks for your reply back on the 12th. Due to that email bug on the forums I only got it today. Your work here is greatly appreciated!!!
duffy
Re: Order Delivery Date Support Thread
FuzzyBunny,
You should take a look at this: http://www.garrett.nildram.co.uk/calendar/scw.htm
If you look at the demo you will see that one of your formatting options is to click on text to update the date and the javascript calendar will appear, which could possibly circumvent the problem you're having?
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
mrmeech
FuzzyBunny,
You should take a look at this:
http://www.garrett.nildram.co.uk/calendar/scw.htm
If you look at the demo you will see that one of your formatting options is to click on text to update the date and the javascript calendar will appear, which could possibly circumvent the problem you're having?
I have this calendar working
http://www.atcakes.com/index.php?mai...pointment_page
Very easy to adjust to what you need it for.
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
ATC
This might seem like an obvious question, but is your example the same calendar solution as my link in my last post (The SCW calendar)? Or is it something else?
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
mrmeech
This might seem like an obvious question, but is your example the same calendar solution as my link in my last post (The SCW calendar)? Or is it something else?
No it is not. At first I thought it was after taking closer look I seen the differences it came from dhtmlgoodies.
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
ATC
No it is not. At first I thought it was after taking closer look I seen the differences it came from dhtmlgoodies.
Ok, awesome! Thanks. I'm going to compare these two a little bit myself and then use one of them for the delivery date selection on the checkout.
Aside from being easy to customize, is there anything that the dhtmlgoodies offers that you've found to be extremely helpful over the one i suggested to Fuzzybunny? Can you turn off selection for an exact date? etc..
I really appreciate your input on this!
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
mrmeech
Ok, awesome! Thanks. I'm going to compare these two a little bit myself and then use one of them for the delivery date selection on the checkout.
Aside from being easy to customize, is there anything that the dhtmlgoodies offers that you've found to be extremely helpful over the one i suggested to Fuzzybunny? Can you turn off selection for an exact date? etc..
I really appreciate your input on this!
No but I found a weeky planner could be used for setting appointments I know someone was working on a mod for that. I forget where I saw the thread.
Re: Order Delivery Date Support Thread
Works like a charm~:clap:
Just one error fix:
includes/languages/english/Your_Template/checkout_process.php
This files is missing '?' on line 64 (to close PHP correctly.).
Change '>' on line 64 to '?>'.
Otherwise under some PHP environments it would return a blank page just after Checkout Confirmation is clicked (orders will not be received).
In the future, notes about rewrites of Zen Cart core files and edit instruction about them could complete the work...
Great work!!
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
SteveKim
Works like a charm~:clap:
Just one error fix:
includes/languages/english/Your_Template/checkout_process.php
This files is missing '?' on line 64 (to close PHP correctly.).
Change '>' on line 64 to '?>'.
Otherwise under some PHP environments it would return a blank page just after Checkout Confirmation is clicked (orders will not be received).
In the future, notes about rewrites of Zen Cart core files and edit instruction about them could complete the work...
Great work!!
Thanks SteveKim! I updated the file so it will be fixed in the next release of the Delivery Date mod. (The new version will have a customizable javascript popup calendar on the checkout instead of a dropdown list..) Additionally, i will keep in mind your request to better notate the code alterations that were performed.