Holidazed |
07-22-2004 09:13 PM |
Quote:
Originally Posted by bitg
Well, I just replaced that template with the contents of my "navbar" template and it seems to work.
Would it not have been better to tell your hack to simply use the "navbar" template? Makes sense to me.
|
OK, I just figured this out.
If you want to use your regular navbar template instead of the one that is included with this hack, just do the following:
Open chat/index.php in your editor
Look for
Code:
eval('$vbxirc_navbar = "' . fetch_template('vbxirc_navbar') . '";');
And replace it with
Code:
eval('$vbxirc_navbar = "' . fetch_template('navbar') . '";');
That is it. Then you can delete the "vbxirc_navbar" template.
Now, if you want the navbar in your chatroom to be completely different than the rest of your site, just ignore these instructions and keep the "vbxirc_navbar" template. I did this on my site because when I add a new feature, I do not want to have to edit multiple navbar templates.
Just trying to help.
|