da420 |
04-03-2007 06:40 PM |
Quote:
Originally Posted by monasa
(Post 1219158)
I have installed vbShout 2.0 on the main page of my forum and it works fine. I'm planning to install another shoutboxin the same forum but in different page or subforum. Is this possible, having 2 shoutbox in one forum? Appreciate your feedback and guide.
VB Version : 3.6.5
|
Follow the instructions outlined here;
https://vborg.vbsupport.ru/showthread.php?t=96158
But do not do Step C there. Rather, find the code below and delete it.
PHP Code:
$vbulletin->templatecache['FORUMHOME'] = str_replace($Position, $Position . ' $Shoutbox', $vbulletin->templatecache['FORUMHOME']);
Now in whatever page you want the shout box to show up simply post the code below.
If you want it to show up in certain forums or sub forums you can wrap that in the conditional below replacing the FORUMIDHERE text with the forum ID's in your forum display template. (ex. 1,2,3,4):
HTML Code:
<if condition="in_array($GLOBALS[forumid], array(FORUMIDHERE))">
$Shoutbox
</if>
|