So you need put php code with date inside div with some id. For example:
- Code: Select all
<div id="myDate">
/* here put your php code */
</div>
and then you have to add suffix to home page. You can do this in template settings in features section. For example ' home'.
Then you will have to add to override.css
- Code: Select all
#myDate {
display:none;
}
.home #myDate {
display:block !important;
}
andremember to enable override.css option in template settings.