Idk what the problem is but it just might be the way your formatted it
also do you want it to display the date everytime? if so try this
if you want it to use the if (which is where your error might be) use this
also do you want it to display the date everytime? if so try this
PHP Code:
<?php
echo '<div id="date">';
echo date('l dS \of F Y');
echo " </div>";
?>
PHP Code:
<?php
if($this->params->get('dateDisplay')){
echo '<div id="date">';
echo date('l dS \of F Y');
echo " </div>";
}
?>