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.
|
that only worked in the sense it shows up on every forumhome_display page..ie...the thread display page, but took it off the index page.
this would be excellent to get sorted out, as you could browse the board while still keepin tabs on the shoutbox all the time...
anyone come up with a fix for this???