Page 12 of 55 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 543
  1. #111
    Join Date
    Jul 2006
    Location
    UK
    Posts
    158
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Hi,

    I'm having problems unzipping the download - it gives me 2 blank files when it's unzipped. Could someone send me a copy please?

    Would be eternally grateful.

    Cheers
    Claire

  2. #112
    Join Date
    Nov 2006
    Location
    New York City
    Posts
    248
    Plugin Contributions
    1

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by cjsmiff View Post
    Hi,

    I'm having problems unzipping the download - it gives me 2 blank files when it's unzipped. Could someone send me a copy please?

    Would be eternally grateful.

    Cheers
    Claire
    Hey Claire,

    Are you on a pc/windows computer by any chance?

  3. #113
    Join Date
    Jul 2006
    Location
    UK
    Posts
    158
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Hi,

    yes, laptop running windows vista.

    Cheers
    Claire

  4. #114
    Join Date
    Nov 2006
    Location
    New York City
    Posts
    248
    Plugin Contributions
    1

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by cjsmiff View Post
    Hi,

    yes, laptop running windows vista.

    Cheers
    Claire
    Hey Claire,

    Are you still having problems with this? Sorry for the delay in responding.

  5. #115
    Join Date
    Aug 2005
    Location
    Johnstown, PA, USA
    Posts
    45
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Is it possible to make the entry of the date mandatory, that is to say a required field?

  6. #116
    Join Date
    Nov 2006
    Location
    New York City
    Posts
    248
    Plugin Contributions
    1

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by duffy View Post
    Is it possible to make the entry of the date mandatory, that is to say a required field?
    Duffy,

    The configuration of of the checkout form (using graphical submit button) as well as the read-only field, has provided a challenge that has defeated me in my couple of hours i just tried to make this work. Normally this would be a very simple task, but unfortunately given the circumstances here, it is not. I'm not saying it can't be done - because it can - but i think there are a few too many quirks for me to grasp what's (not) happening in the code. For starters, google "form image submit validation" and you can start reading the evidence that's out there that it's a pain. And that's not even taking into consideration the complexity of the code in zen cart.

    I tried!!

  7. #117
    Join Date
    Aug 2005
    Location
    Johnstown, PA, USA
    Posts
    45
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    mrmeech,

    Thanks for your efforts, truly appreciated.

  8. #118

    Default Re: Order Delivery Date Support Thread

    I am using the Fast and Easy Checkout mod for my sites and I noticed that this mod alters the checkout_shipping.php file but that file is not utilized in my checkouts now. How do you go about integrating this with FEC?

    Thanks, I would LOVE to use this!

  9. #119
    Join Date
    Nov 2006
    Location
    New York City
    Posts
    248
    Plugin Contributions
    1

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by Doodlebuckets View Post
    I am using the Fast and Easy Checkout mod for my sites and I noticed that this mod alters the checkout_shipping.php file but that file is not utilized in my checkouts now. How do you go about integrating this with FEC?

    Thanks, I would LOVE to use this!
    Unfortunately i do not have the time right now to actually merge the contributions together, BUT - I can give you a roadmap to follow based on peeking at the FEC contribution files, so here it goes:

    BACK UP YOUR DATABASE! Then back it up again, for good measure. I am not liable if your database gets messed up. (or anything else)

    1) Install the SQL patch, which will add a row in the orders table to hold the delivery date.

    2) Apply everything in the admin folder to your site's admin folder.

    3) Update the email templates - this will reflect the delivery date on emails generated to the customer from when the order is processed, and when you choose to notify the customer when you update their status in the admin.

    4) Upload includes/classes/order.php

    5) includs/languages/english/YOUR_TEMPLATE/*.php


  10. #120
    Join Date
    Nov 2006
    Location
    New York City
    Posts
    248
    Plugin Contributions
    1

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by Doodlebuckets View Post
    I am using the Fast and Easy Checkout mod for my sites and I noticed that this mod alters the checkout_shipping.php file but that file is not utilized in my checkouts now. How do you go about integrating this with FEC?

    Thanks, I would LOVE to use this!
    Unfortunately i do not have the time right now to actually merge the contributions together, BUT - I can give you a roadmap to follow based on peeking at the FEC contribution files, so here it goes:

    BACK UP YOUR DATABASE! Then back it up again, for good measure. I am not liable if your database gets messed up. (or anything else) Absolutely DO NOT do this on a live store.

    1) Install the SQL patch, which will add a row in the orders table to hold the delivery date.

    2) Apply everything in the admin folder to your site's admin folder.

    3) Update the email templates - this will reflect the delivery date on emails generated to the customer from when the order is processed, and when you choose to notify the customer when you update their status in the admin.

    4) Upload includes/classes/order.php

    5) includs/languages/english/YOUR_TEMPLATE/*.php
    All of the language definitions are at the bottom of the files. Some of them repeat. You want to make sure that they are inserted into your FEC language files (which, as it is structured in the package, does not use a template override, which i would suggest). Some of the language definitions repeat depending on the page - just make sure you have one of each definition in the FEC language files. In other words, no repeats.

    6) I am not 100% sure on this, but i think this what you need to do. Take everything in the includes/modules/pages/checkout_shipping folder and put it into the respective folders for the FEC pages where you want to have the delivery date calendar. I think this is probably INCLUDES/MODULES/PAGES/CHECKOUT for the FEC code. DO NOT OVERWRITE the HEADER.PHP file here!!! Open the Delivery date header up and find the noted edits and copy them into the FEC header.php.

    7) Copy and add CSS from INCLUDES/TEMPLATES/your_template/CSS/checkout_shipping.css into INCLUDES/TEMPLATES/your_template/CSS/checkout.css

    8) copy image files in the template folder - nothing overwritten there.

    9) Adding the code in the template to display the delivery date code in the checkout: So, add this code somewhere WITHIN the "FORM" tag on the template file for FEC where you'd like to have the calendar displayed:

    HTML Code:
    <!-- Bof Order Delivery Date -->
    <fieldset class="shipping" id="order_delivery_date">
    <legend><?php echo TABLE_HEADING_DELIVERY_DATE; ?></legend>
    
    <label for="order_delivery_date">Date:</label>
    <input readonly="readonly" id="date" name="order_delivery_date" type="text">
    </fieldset>
    <!-- Eof Order Delivery Date -->
    and then add this to the template file where you'd like to have it reflected on the confirmation page:
    HTML Code:
    <?php // BEGIN Order Delivery Date ?>
    <br />
    <h3><?php echo TABLE_HEADING_DELIVERY_DATE; ?></h3>
    <h4><?php echo zen_date_long($order->info['order_delivery_date']); ?></h4><br />
    </div>
    <?php // END Order Delivery Date ?>
    10) Configuring the calendar - this is done in the file INCLUDES/MODULES/PAGES/CHECKOUT_SHIPPING/jscript_calendar_head.php

    Instructions are commented into the file itself.

    Best of luck!

 

 
Page 12 of 55 FirstFirst ... 2101112131422 ... 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