Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
Thanks for your speedy reply. We have checked the files one by one. However, we do have a slideshow on our front page only that uses javascript. You can see the code for yourself if you view page source on the front page of testdeliverydate.giveonlythebest.com.
For you convenience, here is the code from the front page of the site that javascript that drives the slideshow in it:
This code is in the <head> tag:
<script type="text/javascript" src="includes/templates/premium8b/jscript/jscript_jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="includes/templates/premium8b/jscript/jscript_jquery.cycle.all.min.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39685303-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['_trackPageLoadTime']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
This code is in the <body> where the slideshow is.
<script language="javascript" type="text/javascript"><!--
$(document).ready(function() {
$("#slideshow").css("overflow", "hidden");
$("ul#slides").cycle({
fx: 'fade', //transition effects: fade, shuffle, zoom, turnDown, curtainX
timeout: 5000, //miliseconds between slide image change
pause: 1,
prev: '#prev',
next: '#next'
});
$("#slideshow").hover(function() {
$("ul#nav").fadeIn();
},
function() {
$("ul#nav").fadeOut();
});
});
//--></script>
Here are some quick questions:
- How would the javascript affect this add on?
- Is there anything we need to turn on or off in the admin area?
- What should we be seeing on the checkout 1 of 3 page with this add-on?
Thanks
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
that is jquery and does conflict. If the only thing you have is the slider, then it needs to be installed in a specific way to avoid conflicts.
There are 2 files in your custom templates - templates/premium8b/jscript/jscript_jquery-1.4.2.min.js
includes/templates/premium8b/jscript/jscript_jquery.cycle.all.min.js
Move both files to includes/modules/pages/index.
That should fix the problem.
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
Hi, I had this problem too and if i remember it was an issues with javascript, more than one jscript library or in the wrong place - might be worth a look.
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
delia
I would love to put this module into my store, but I'm building a new store using a responsive template from Zen4Me called "Celestial", and it not only uses a few jscripts but also uses "bootstrap" (?)... Is using this add-on possible with such a setup?
Almost forgot: Using ZC1.5.1 on GoDaddy with Celestial by Zen4Me.com. :dontgetit
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
Probably not at this time. Any bootstrapped template uses jQuery throughout the store which would conflict with the present javascript for the mod. I have hopes of upgrading the mod to jquery instead but that may have to wait.
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
Delia - I went looking through this and have a question: How much of this solution is using the MooTools JScript?. I ask as one not of the programming cloth, but curious... Is it adding the calendar and programming the input (and requirement of) the calendar date, or is there more to it beyond altering the layouts?
Re: Can't Enter Order Delivery Date on Step 1 of 3 of Checkout
the mootools creates the calendar only -- otherwise integrated as normal thru php.
Re: Order Delivery Date Support Thread
hi guys, im having some trouble installing this module along side fast and easy checkout, I have managed to input the calendar, and I have gone through all scripts in fec, adding the order delivery date code lines, for some random reason, it will always return a date of Tuesday 30 November, 1999 and i dont know why it is doing this, could anyone please offer me some guidance as to how i can fix this?
Many Thanks
Powell
Re: Order Delivery Date Support Thread
Quote:
Originally Posted by
powell
hi guys, im having some trouble installing this module along side fast and easy checkout, I have managed to input the calendar, and I have gone through all scripts in fec, adding the order delivery date code lines, for some random reason, it will always return a date of Tuesday 30 November, 1999 and i dont know why it is doing this, could anyone please offer me some guidance as to how i can fix this?
Check your database for the actual date that is being saved in the database. I believe I ran into this before and it was that either the insert/update statements for the DB were not correct or the select statement from the database was not correct.