Status
Not open for further replies.

stev

Customer
I would like to be able to create a chat box in a private forum, is there any instruction on how to do that?
 
Create a new Instance via Instance Management.
Set Auto-Deploy off
Set Shoutbox Deployment to forum,showthread
Set Templates to FORUMDISPLAY,SHOWTHREAD
Edit the FORUMDISPLAY template, and add this:

vBulletin 4.x
Code:
<vb:if condition="$foruminfo['forumid'] == 100">{vb:raw vbshout}</vb:if>
vBulletin 3.x
Code:
<if condition="$foruminfo['forumid'] == 100">{$vbshout}</if>
Edit the SHOWTHREAD template, and add this:

vBulletin 4.x
Code:
<vb:if condition="$threadinfo['forumid'] == 100">{vb:raw  vbshout}</vb:if>
vBulletin 3.x
Code:
<if condition="$threadinfo['forumid'] ==  100">{$vbshout}</if>
Replace 100 with your private forum's ID.


That should do it.
 
Status
Not open for further replies.
Top