Ok i feel so stupid. The reason this doesn't work is because i didn't include the modifcations to the 'forumdisplay' template.
I've updated the zip and if you have already installed this follow these instructions:
Quote:
In your 'forumdisplay' template find: :
----------------------------------------------------------------------
$forumdisplay[forumslist]
----------------------------------------------------------------------
+
+++
+
** Above ** it add:
----------------------------------------------------------------------
$fdopentable
----------------------------------------------------------------------
+
+++
+
Again in your 'forumdisplay' template find: :
----------------------------------------------------------------------
forumdisplay[threadslist]
----------------------------------------------------------------------
+
+++
+
Below ** it add:
----------------------------------------------------------------------
$getsponsor
----------------------------------------------------------------------
|
Then you should already have some code at the bottom of forumdisplay.php. Replace it with this:
PHP Code:
///// Forum sponsors (by mist) start ///////////
if ($foruminfo['sponsorname'] and $foruminfo['sponsorimage'] and $foruminfo['sponsorurl'] and $totalthreads>0)
{
if ($foruminfo[sponsorviews]=="0")
{
$foruminfo[sponsorviews]=0;
}
$foruminfo[sponsorviews]++;
$DB_site->query("UPDATE forum SET sponsorviews=$foruminfo[sponsorviews] WHERE forumid=$forumid");
eval("\$fdopentable = \"".gettemplate('forumdisplay_opentable')."\";");
eval("\$getsponsor = \"".gettemplate('forumdisplay_sponsor')."\";");
}
///// Forum sponsors (by mist) end ///////////
Regards
- miSt