I FOUND IT!!!! I shut down my computer, and sat for a second (after all these hours of hunting for it)...had an epiphany... and turned it back on and found it in a second. Study the two blocks of code, and you'll figure it out. It was tpl_checkout_shipping_defualt.php that was causing the problem.
Delivery Date version 2:
PHP Code:
<!-- Bof Ship Date -->
<fieldset class="shipping" id="order_delivery_date">
<legend><?php echo TABLE_HEADING_DELIVERY_DATE; ?></legend>
<label for="date">Date</label>
<input class="calendar" readonly="readonly" id="date" name="date" type="text">
</fieldset>
<!-- Eof Ship Date -->
And what it SHOULD be:
PHP Code:
<!-- 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 -->
how stupid.
Bookmarks