Austin Dea, I have an update for you to add to this hack. If you want the images linked in the usercp for the Subscribed Forums, do the following:
In usercp.php, replace
PHP Code:
if ($userlastvisit<$forum['lastpost']) {
$forum['onoff']='on';
} else {
$forum['onoff']='off';
}
}
if ((!$forumperms['canpostnew'] and $showlocks) or $forum['allowposting']==0) {
$forum['onoff'].='lock';
}
with:
PHP Code:
// on/off link hack
if ($userlastvisit<$forum['lastpost']) {
eval("\$forum['onoff'] = \"".gettemplate('forumhome_onlink')."\";");
} else {
$forum['onoff']='<img src="{ imagesfolder}/off.gif" border="0" alt="There are no new posts in this forum">';
}
}
if ((!$forumperms['canpostnew'] and $showlocks) or $forum['allowposting']==0) {
$forum['onoff']='<img src="{ imagesfolder}/lock.gif" border="0" alt="This forum is locked!">';
}
// end on/off link hack
and in the "usercp_forumbit" template, change this:
PHP Code:
<img src="{ imagesfolder}/$forum[onoff].gif" border="0" alt="">
to this:
and don't forget to add forumhome_onlink to the templatesused line if the usercp.php file.
NOTE: Don't forget to take the spaces out between the { and imagesfolder.
That's all!