Quote:
Originally Posted by Bellardia
Go to your header template
Find
HTML Code:
<img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />
Replace
HTML Code:
<img src="$BannerImg" border="0" alt="$vboptions[bbtitle]" />
Create a Plugin
Hook : global_start
Change 1 to whichever forum ID you want, change Images too!
PHP Code:
if($vbulletin->GPC[forumid] == '1')
{
$BannerImg = 'special.png';
}
else
{
$BannerImg = 'default.png';
}
|
This worked in one forum, but when I go to add it to the 2nd (by just repeating the code), it's not working. I even tried to make a new plug in, calling it something else for the 2nd forum. It's not pulling up the special logo, it's still pulling the default. Any ideas?