MaDCaT75
11-26-2003, 04:16 AM
I dont know if this has been done before and I'm not sure if I have all the pieces together.... but I think I might have created my own hack under the category of Forum Display Enhancements.
Anyways here it goes:
in forumdisplay.php find:
if ($forumshown==1) {
eval("\$forumdisplay[forumslist] = \"".gettemplate('forumdisplay_forumslist')."\";");
} else {
$forumdisplay['forumslist']='';
}
unset($imodcache);
$newthreadlink = "";
under that add:
if($foruminfo[forumid] == XX)
{
$forumimg = "<img src=\"{imagesfolder}/whatever.jpg\" />";
}
(replace the XX with a forumid number)
if you want a seperate image for a seperate forum ID then do the following:
do the above steps only this time:
if($foruminfo[forumid] == 16)
{
$forumimg = "<img src=\"{imagesfolder}/whatever.jpg\" />";
}
else if($foruminfo[forumid] == 3)
{
$forumimg = "<img src=\"{imagesfolder}/whatever2.jpg\" />";
}
close and save forumdisplay.php
log into your admin cp and go to modify templates for your style, open forumdisplay template.
find:
<td valign="bottom" align="right"><smallfont>$newthreadlink</smallfont></td>
</tr>
</table><br>
under that add:
$forumimg
or wherever you want the forum image to be displayed.
I think that should do it but I am uncertain if there is more required to get the image to show up in the forum.
Anyways here it goes:
in forumdisplay.php find:
if ($forumshown==1) {
eval("\$forumdisplay[forumslist] = \"".gettemplate('forumdisplay_forumslist')."\";");
} else {
$forumdisplay['forumslist']='';
}
unset($imodcache);
$newthreadlink = "";
under that add:
if($foruminfo[forumid] == XX)
{
$forumimg = "<img src=\"{imagesfolder}/whatever.jpg\" />";
}
(replace the XX with a forumid number)
if you want a seperate image for a seperate forum ID then do the following:
do the above steps only this time:
if($foruminfo[forumid] == 16)
{
$forumimg = "<img src=\"{imagesfolder}/whatever.jpg\" />";
}
else if($foruminfo[forumid] == 3)
{
$forumimg = "<img src=\"{imagesfolder}/whatever2.jpg\" />";
}
close and save forumdisplay.php
log into your admin cp and go to modify templates for your style, open forumdisplay template.
find:
<td valign="bottom" align="right"><smallfont>$newthreadlink</smallfont></td>
</tr>
</table><br>
under that add:
$forumimg
or wherever you want the forum image to be displayed.
I think that should do it but I am uncertain if there is more required to get the image to show up in the forum.