hi
I have 3 product layouts and the add to cart only seems to be transfering the product to the cart on one of them.
this link works correctly
http://www.mrmattress.co.uk/acatalog...e__4ft_6_.html
where are this one doesnt
http://www.mrmattress.co.uk/acatalog...gle__3ft_.html
the difference between the two is that the bottom one encompasses a javascript that automatically tells you the date of next day delivery as such
can anyone help?
I have 3 product layouts and the add to cart only seems to be transfering the product to the cart on one of them.
this link works correctly
http://www.mrmattress.co.uk/acatalog...e__4ft_6_.html
where are this one doesnt
http://www.mrmattress.co.uk/acatalog...gle__3ft_.html
the difference between the two is that the bottom one encompasses a javascript that automatically tells you the date of next day delivery as such
Code:
<script type="text/javascript"> var d=new Date() var weekday=new Array(7) weekday[0]="Tuesday" weekday[1]="Tuesday" weekday[2]="Wednesday" weekday[3]="Thursday" weekday[4]="Friday" weekday[5]="Monday" weekday[6]="Tuesday" var current= new Date() var day_night=current.getHours() if (day_night>=11) document.write(weekday[d.getDay() + 1]) else document.write(weekday[d.getDay()])</script>
Comment