Okay, I'm gonna try to help but given the limited time that I have, I don't promise much. You better go to the Ajax Chat tracker @ sourceforge.org; there you'll certainly get support from the developer himself.
Quote:and can i change where it say Ajax chat to KS chat ??
Go to chat/lib/template/ & edit the file "loggedout", & find:
Code:
<title>[LANG]title[/LANG]</title>
Replace with:
Code:
<title>KS Chat</title>
The find:
Code:
<h1>[LANG]title[/LANG]</h1>
And replace with:
Then repeat the same two renaming procedures with the file "loggedin".
Quote:how do i "lock" the themes so vistors don't see the change theme button and they won't use the dault theme when they first login
I don't know how you can lock it, I'd have to look into it. You could nevertheless delete the other themes, so your visitors would only be using the theme you set as default.
To do that, open chat/lib/config with a text editor, the find & edit this bit to your likings:
Code:
// Available styles:
$config['styleAvailable'] = array('beige','black','grey','Oxygen','Lithium','Sulfur','Cobalt','Mercury','Radium','prosilver','subsilver2','subblack2','subSilver','Core','MyBB','vBulletin');
// Default style:
$config['styleDefault'] = 'MyBB';
Say, if you want to keep the Oxygen theme only & have it as your default theme, delete the other entries so that the code would be like:
Code:
// Available styles:
$config['styleAvailable'] = array('Oxygen');
// Default style:
$config['styleDefault'] = 'Oxygen';