It would be good to set the operating hours o the system, perhaps I set it to 0900-1700 and any request sent outside that time, will still get logged, but the auto reply prepends or apends as message informing the user that we've all gone home! and we'll be back on Monday...

If there is already such a setting, please tell me where and how!

Edit index.php

on line 23 which looks like this:

add a few blank lines pushing the

down and add the following.

<?php

$time = localtime();

if($time<'17') {

echo '<p>Our business is currently closed, come back later!</p>';

exit;

}

else {

?>

on line 44 which looks like this:

add a new line pushing the div down and add this before it.

<?php } ?>

Write a Reply...