Quote Originally Posted by bettysue View Post
Is this where the line forms behind duffy for the mm/dd/yy version??

Definitely been waiting for this mod - thank you!

betty
Quote Originally Posted by duffy View Post
Thanks mrmeech, I'll change it back. Don't go out of your way for a fix, it's really not a big deal, but your help is immensely appreciated!!
Try this out...

(Duffy, you *shouldn't* have any awkward date problems with this, but test it out and let me know)

You want to open up includes/templates/YOURTEMPLATE/templates/tpl_checkout_shipping_default.php and use this code near the bottom instead of what's there:
PHP Code:
<!-- Bof Ship Date -->
<fieldset class="shipping" id="order_delivery_date">
<legend><?php echo TABLE_HEADING_DELIVERY_DATE?></legend>
<select name="order_delivery_date">
<?php
for ($i=0$n=50$i $n$i++) {
    
$now[$i] = strtotime ("+$i day"time());
    if ( 
strftime ("%w",$now[$i])<>0
        
AND strftime ("%m-%d",$now[$i])<>"12-25"
        
AND strftime ("%m-%d",$now[$i])<>"12-26"
        
AND strftime ("%m-%d",$now[$i])<>"01-01"
    
){
        echo 
'<option value="'.strftime ("%Y-%m-%d",$now[$i]).'">'.strftime ("%B %d %Y (%A)",$now[$i]).'</option>';
    }
}
?>
</select>
</fieldset>
<!-- Eof Ship Date -->