Cyb - ChatBox v2.3 Can I add this to my staff room only.

When you say staff room, do you mean that you have a page called staf.php for example and you only want it to be displayed there? Or do you have a specific forum/category in which you want it to be displayed?
 
Hmmm....

The mod you installed, did you have to add any replacement variables such as $shoutbox in any of the templates while you were bussy installing it?
 
Did not notice. However, when I go into the options, it asks where I want to put it and the default is index

If I change that let's says forumdisplay.php?f4 or something like that, I gives me a bunch or errors.
 
Well, check the install files. If you DID have to enter a replacement variable, the first thing you'd have to do is remove it from wherever you placed it. Then goto your plugin manager and change the hook location of all the Chatbox plugins to global_start. After that goto your forumdisplay template and add the following code to it: (bellow $navbar)
HTML:
<if condition="$forumid=X">
$chatbox replacement variable
</if>

that will most probably work. You may also try using the following if statement's if the above one doesn't work:

HTML:
<if condition="$forumid='X'">
<if condition="$forumid==X">
<if condition="$forumid=='X'">
 
Back
Top