Page 50 of 55 FirstFirst ... 404849505152 ... LastLast
Results 491 to 500 of 543
  1. #491
    Join Date
    May 2018
    Location
    Melbourne, Australia
    Posts
    29
    Plugin Contributions
    0

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

    Thanks. The modified file has fixed the problem. Had already carried out the post #478. Any suggestions re the calendar not showing up ?

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

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

    Quote Originally Posted by donw View Post
    Thanks. The modified file has fixed the problem. Had already carried out the post #478. Any suggestions re the calendar not showing up ?
    This could be from a number of things, between load sequence of the mootools javascript, the presence/absence of css (button may be there, but not where it is expected), template modifications and whether the date box is tied to the correct object, as part of sequence loading whether some other javascript/jquery is prohibiting connecting/executing, a javascript failure in something else, the page not passing html validation, etc...

    I (or I would think almost any forum member) could take a look at some of the above by knowing where on the Internet to look at and when that/those individuals are available to do so.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #493
    Join Date
    May 2018
    Location
    Melbourne, Australia
    Posts
    29
    Plugin Contributions
    0

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

    I've just had a look in the Safari javascript console and the error coming up is related to the code:

    if (undefined !== typeof (jQuery)) {
    jQuery.noConflict();
    }

    at the top of the jscript_a-mootools.js file. The error is "Can't find variable: jQuery

    Appreciate any help in sorting this out.

  4. #494
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

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

    Quote Originally Posted by donw View Post
    I've just had a look in the Safari javascript console and the error coming up is related to the code:

    if (undefined !== typeof (jQuery)) {
    jQuery.noConflict();
    }

    at the top of the jscript_a-mootools.js file. The error is "Can't find variable: jQuery

    Appreciate any help in sorting this out.
    Basically that means that jQuery is not being loaded before the mooTools.js file. This seems to imply that the header file(s) for the page load have been modified away from standard content for the last several Zen Cart versions. Specifically includes/templates/YOUR_TEMPLATE/common/html_header.php.

    Effectively, somewhere above/before the mootolls file, jQuery should be loaded. It has been verified to function with the version released with ZC 1.5.6c and with the alpha version of ZC 1.5.7. Suggest comparing your version of that file with either of the two versions available either responsive_classic or template_default...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #495
    Join Date
    May 2018
    Location
    Melbourne, Australia
    Posts
    29
    Plugin Contributions
    0

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

    Ok. From your suggestion I've replaced the html_header.php file with the 1.5.6c version, and that has gotten rid of the Mootools error, but I am now left with the following:

    TypeError: el.addEvent is not a function. (In 'el.addEvent('focus', function(cal){ this.toggle(cal); }.pass(cal, this))', 'el.addEvent' is undefined) on line 454 of jscript_b-calendar.js

    I've done a fair amount comparing of other files to try to find the problem, but have had no success.

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

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

    Quote Originally Posted by donw View Post
    Ok. From your suggestion I've replaced the html_header.php file with the 1.5.6c version, and that has gotten rid of the Mootools error, but I am now left with the following:

    TypeError: el.addEvent is not a function. (In 'el.addEvent('focus', function(cal){ this.toggle(cal); }.pass(cal, this))', 'el.addEvent' is undefined) on line 454 of jscript_b-calendar.js

    I've done a fair amount comparing of other files to try to find the problem, but have had no success.
    I have this installed on what has now become a Zen Cart 1.5.7 site using responsive_classic primarily. Looking through the code as able, it seems that there may be an issue connecting with the box that is to represent/hold the date information. Again, need to be sure that the page validates against html and that the location to hold the date has the applicable html code to attach to the date block. That should be present in the provided checkout_shipping file at least in the modified code section.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #497
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    255
    Plugin Contributions
    4

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

    Hi

    Little bug that seems to have always existed with this -

    If you select your delivery date then click 'Change Address' - on return to 'step 1 of 3' it doesn't remember the delivery date.

    Using 1.5.6c and latest delivey date plugin - but I've had this issue forever.

  8. #498
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

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

    Quote Originally Posted by royaldave View Post
    Hi

    Little bug that seems to have always existed with this -

    If you select your delivery date then click 'Change Address' - on return to 'step 1 of 3' it doesn't remember the delivery date.

    Using 1.5.6c and latest delivey date plugin - but I've had this issue forever.
    Good point, though I wonder if it is possible to capture data from the page when selecting that or any other "button" on the page. Will take a look at the possibility of capturing the selection in the session when making the selection so that if a selection is made and navigation away from the page and subsequent return will retain the selection. May be a bit, but issue will be noted in github.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #499
    Join Date
    Jul 2012
    Posts
    16,799
    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
    Good point, though I wonder if it is possible to capture data from the page when selecting that or any other "button" on the page. Will take a look at the possibility of capturing the selection in the session when making the selection so that if a selection is made and navigation away from the page and subsequent return will retain the selection. May be a bit, but issue will be noted in github.
    Submitted as an issue: https://github.com/mc12345678/order-...-date/issues/5
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  10. #500
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    255
    Plugin Contributions
    4

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

    Quote Originally Posted by mc12345678 View Post
    I have this installed on what has now become a Zen Cart 1.5.7 site using responsive_classic primarily. Looking through the code as able, it seems that there may be an issue connecting with the box that is to represent/hold the date information. Again, need to be sure that the page validates against html and that the location to hold the date has the applicable html code to attach to the date block. That should be present in the provided checkout_shipping file at least in the modified code section.
    I have another issue with this plugin and the classic responsive template.

    The presence of mootools is breaking the mobile device menu on this page - you'll see its contents below the footer.

    If you remove mootools from the directory it works properly.

    Any ideas?

 

 
Page 50 of 55 FirstFirst ... 404849505152 ... 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