Quote:
Originally Posted by Evercraft
I don't think there is a simple way, that I can think of anyway.
|
if you enable "Display Calendar Events?" under Forums Home Page Options it'll show it at the bottom of the Home Page....i'm working on moving that up, probably a customize template thing.
edit: i was able to move it to another location:
what i did was remove the following code from FORUMHOME and put it in another location...it seems to work fine with the enabled item above ^^^ You can see it on my site at
PaintballArizona.com if you'd like, its above the shoutbox.
(i modified the <tbody> to have a <table></table>
Code:
<if condition="$show['upcomingevents']">
<table>
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2"><a href="calendar.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
</tr>
</tbody>
</table>
</if>