The only change I've had to apply to this so far is to the admin pages (order.php/invoice.php/packingslip.php) to handle orders where the customer hasnt selected a delivery date.
Wherever the delivery date is displayed (e.g. echo zen_date_long($order->info['order_delivery_date']))
I've changed to:
if ($order->info['order_delivery_date']=='0000-00-00' || strlen($order->info['order_delivery_date'])==0) echo "Not Entered"; else echo zen_date_long($order->info['order_delivery_date']);


Reply With Quote

