View Single Post
  #2  
Old 02-28-2008, 08:07 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: Time based shipping message

Insert in the end file "auth.php":

PHP Code:
$a "";
if ( 
strftime("%H") < 14 ) {
$a "Courier orders are still being accepted (hurry for delivery tomorrow";
}
elseif ( 
strftime("%H") < 15 ) {
$a "We are sorry but Courier orders cannot be placed today for delivery tommorow";
}
else {
$a "Couriers orders will not be dispatched until tomorrow ";
}

$smarty->assign("cart_mess"$a); 

Open file "skin1/modules/Fast_Lane_Checkout/home.tpl", find lines:
PHP Code:
<td align="left">
<!-- 
central space --> 

insert after:
PHP Code:
<h2>{$cart_mess}</h2
Reply With Quote