Results 1 to 10 of 544

Hybrid View

  1. #1
    Join Date
    Apr 2011
    Posts
    585
    Plugin Contributions
    0

    red flag Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by dbltoe View Post
    In the docs for OPC you'll find the fix to help with the MooTools use.
    For the love of Zen Cart, I tried everything but I can t get it to work with OPC.


    For some reason, it is not registering the date on the order. I keeps displaying the same date over and over again.

    I works fine with OPC disable. If I disable OPC and pick a date, like 08-08-18, it will displayed and registered fine on the order ( admin). However, once I switch OPC back on, no matter how many orders or which date I choose, it will always display 08-08-18 on the admin.

    Here is what I did:

    - copied all the files from /modules/pages/checkout_shipping to /modules/pages/checkout_one

    - copied the following code from /templates_default/tpl_checkout_shipping_default.php to template_default/checkout_one_default.php


    <!-- 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 -->

    - copied css from checkout_shipping.css to checkout_one.css to have the calendear displayed correctly.

    - added the jQuery.noConflict(); to jscript_a-mootools.js


    But after all this, it is not working....

    Please help thank you

  2. #2
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by nicksab View Post
    For the love of Zen Cart, I tried everything but I can t get it to work with OPC.


    For some reason, it is not registering the date on the order. I keeps displaying the same date over and over again.

    I works fine with OPC disable. If I disable OPC and pick a date, like 08-08-18, it will displayed and registered fine on the order ( admin). However, once I switch OPC back on, no matter how many orders or which date I choose, it will always display 08-08-18 on the admin.

    Here is what I did:

    - copied all the files from /modules/pages/checkout_shipping to /modules/pages/checkout_one

    - copied the following code from /templates_default/tpl_checkout_shipping_default.php to template_default/checkout_one_default.php


    <!-- 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 -->

    - copied css from checkout_shipping.css to checkout_one.css to have the calendear displayed correctly.

    - added the jQuery.noConflict(); to jscript_a-mootools.js


    But after all this, it is not working....

    Please help thank you
    If you truly copied all of the files of your store from includes/modules/pages/checkout_shipping to includes/modules/pages/checkout_one, then that would be a source of the problem.

    The only software from the checkout_shipping directory above needed to support this plugin is that added to that directory to support this plugin. So namely first the javascript file and then possibly some of the code that is inside the header_php.php file, but not that entire file.

    I've been working on a slight rewrite to pull code out of that file and make a few other improvements.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Apr 2011
    Posts
    585
    Plugin Contributions
    0

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by mc12345678 View Post
    If you truly copied all of the files of your store from includes/modules/pages/checkout_shipping to includes/modules/pages/checkout_one, then that would be a source of the problem.

    The only software from the checkout_shipping directory above needed to support this plugin is that added to that directory to support this plugin. So namely first the javascript file and then possibly some of the code that is inside the header_php.php file, but not that entire file.

    I've been working on a slight rewrite to pull code out of that file and make a few other improvements.
    By "all files", I mean I copied from the plug-in to the checkout_one and nopt from the store:

    jscript_calendar_head.php
    jscript_b-calendar.js
    jscript_a-mootools.js

    This was suggested here because the calendar was not displaying.


    The plug in file I downloaded do not include any header_php.php file. The plug in works great with OPC off. It just won t register the date into the order when OPC is on.

  4. #4
    Join Date
    Apr 2011
    Posts
    585
    Plugin Contributions
    0

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by nicksab View Post
    By "all files", I mean I copied from the plug-in to the checkout_one and nopt from the store:

    jscript_calendar_head.php
    jscript_b-calendar.js
    jscript_a-mootools.js

    This was suggested here because the calendar was not displaying.


    The plug in file I downloaded do not include any header_php.php file. The plug in works great with OPC off. It just won t register the date into the order when OPC is on.
    Anybody please??

  5. #5
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by nicksab View Post
    Anybody please??
    I'll be trying to implement the combination again soon... Have some other things I need to do, if there is anyone else that steps up then good, also.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by mc12345678 View Post
    I'll be trying to implement the combination again soon... Have some other things I need to do, if there is anyone else that steps up then good, also.
    Yeah, not feeling the love with trying to integrate... I thought that for sure it would still notify as if there had been no changes; however, its an entirely different set of operations and therefore things done to offer more of a plugin nature to ZC are basically useless and have to figure out how to integrate this module into that one.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #7
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,925
    Plugin Contributions
    96

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Quote Originally Posted by mc12345678 View Post
    Yeah, not feeling the love with trying to integrate... I thought that for sure it would still notify as if there had been no changes; however, its an entirely different set of operations and therefore things done to offer more of a plugin nature to ZC are basically useless and have to figure out how to integrate this module into that one.
    If you need notifiers added, just let me know via post to the One-Page Checkout's support thread.

  8. #8
    Join Date
    Apr 2011
    Posts
    585
    Plugin Contributions
    0

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    Thank you. I really appreciate the hard work. Hopefully it will fix my issue

  9. #9
    Join Date
    Apr 2011
    Posts
    585
    Plugin Contributions
    0

    Default Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout

    umm ok. This is still not working for me.

    I got the version 2.6.1 from GitHub.

    I installed all the files on a fresh version of zc 1.5.5f with OPC 2.0.4.

    If OPC is set to false, everything works like a charm.

    If OPC is set to true, Order delivery date is not being displayed on the checkout_one page.

    What am I missing?

    I feel really stupid right now and I think I need someone to walk me thru it. Please

    Thank you.

 

 

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

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