Quote:
Originally Posted by lierduh
If you want to have shoutbox on all forumdisplay pages:
1) Change the hook location for 'vBShout [Template Alteration]' to: forumdisplay_complete
2) Edit the plugin code for 'vBShout [Template Alteration]'
Find: '$vbulletin->templatecache['FORUMHOME'] = str_replace($Position, $Position . ' $Shoutbox', $vbulletin->templatecache['FORUMHOME']);'
Replace it with:
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace('$navbar', '$navbar' . ' $Shoutbox', $vbulletin->templatecache['FORUMDISPLAY']);
This is a quick and dirty hack. The shoutbox will only show up under navbar!
3) If you want the shoutbox to show up only in certain forums:
a. add
if ($forumid ==13)
{
In the beginning of the above plugin. 13 is the forum ID you want the shoutbox to show.
b. add
}
in the end of the code.
|
Any way to get it so it displays at the bottom as opposed ot the top? I wanted to get the shoutbox on the forum home, and in one of my subforums at the bottom.