http://www.icyphoenix.com/viewtopic.php?f=4&t=6354&p=43351#p43351
-----------------------------------
Lopalong
Mon 24 Aug, 2009 08:06

CUSTOMIZATION - Add The Main Calendar To The Home Page (Index).
-----------------------------------
This is one way of doing it - I would think! :P

To add the "Main" Calendar to the Index (Home) page - Just follow the instructions here. ;)


The first script is the location in the picture. And you only need to select [b]ONE[/b] of these scripts - [b][i]NOT[/i][/b] both of them. (And they are different).

[spoiler][code linenumbers=false]##########################################################

Open: breadcrumbs_main.tpl

Find:

</div>{IMG_TBR}

After Add:

<?php 
if (basename($_SERVER['SCRIPT_NAME'], '.' . PHP_EXT) == 'index')
{
?>
<table width="100%" class="" cellpadding="0" cellspacing="1">
<tr>
<td>
<!-- IF not S_BOT -->
{CALENDAR_BOX}
<!-- ENDIF -->
</td>
</tr>
</table>
<?php
}
?>

#########################################################

This script below here will put it further up into the header.

#########################################################


Open: overall_header.tpl

Find:

<!-- IF GB_BLOCK -->

Before Add:

<?php 
if (basename($_SERVER['SCRIPT_NAME'], '.' . PHP_EXT) == 'index')
{
?>
<tr>
<td>
<!-- IF not S_BOT -->
{CALENDAR_BOX}
<!-- ENDIF -->
</td>
</tr>
<?php
}
?>

########################################################[/code][/spoiler]

If you want it somewhere else on the index page, then you will have to[b][i] "Play"[/i][/b] with the markup.  8) 

[img]http://www.icyphoenix.com/files/images/3531/calendar.png[/img]


