
Originally Posted by
kyli51
hi all,
guess i would need some help here..i installed the mod but i cannot select any date...mean i see the field but can't do anything with it..
I have also the easy checkout mod and folloeed the instructions..
thanks
KyLi
website is
www.wittygift.com
KyLi,
You're loading Mootools twice -- the first time in the head tag that it loads is where it's supposed to be for the delivery date mod to function. This is all good:
HTML Code:
<script type="text/javascript" src="includes/modules/pages/checkout/jscript_a-mootools.js"></script>
<script type="text/javascript" src="includes/modules/pages/checkout/jscript_b-calendar.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() { myCal = new Calendar({ date: 'Y-m-d' }, { blocked: ['24-25,31 12 *', '0 * * 0'], direction: 3, draggable: false }); });
</script>
But further down in your head tag you also have this:
HTML Code:
<script type="text/javascript" src="js/mootools.js"></script>
The reason that the order delivery date has "a" and "b" in those two JS files is because if mootools loads after calendar.js it will not work. I suspect that that might be the problem.
Bookmarks