Quote:
Originally Posted by ryan_46307
Whenever I set the chatbox :"Usergroup Banned" to Unregistered / Not Logged In and save it, then log off I can still see the chatbox on the homepage. Any ideas?
|
Quote:
Originally Posted by DJ Sergeich
Please, tell, how did you fix it for 3.8 ???
|
Quote:
Originally Posted by Belder
I have exactly the same problem. Is there a fix for this? Currently using vB3.8.1
|
hi all
for fix this go here:
AdminCP -> Plugins & Products -> Plugin Manager
Click EDIT on the plugin "cChatBox - Admin Options UGP Save", delete all the code and insert this:
PHP Code:
if ($oldsetting['optioncode'] == 'cchatbox_usergroup')
{
$store = array();
foreach ($vbulletin->GPC['setting'][$oldsetting['varname']] AS $key => $value)
{
if ($value)
{
$store[] = $key;
}
}
if(strpos($vbulletin->options['simpleversion'],'37') !== false)
{
$settings[$oldsetting['varname']] = implode(',', $store);
} elseif(strpos($vbulletin->options['simpleversion'],'38') !== false) {
$settings[$oldsetting['varname']] = implode(',', $store);
} else {
$vbulletin->GPC['setting'][$oldsetting['varname']] = implode(',', $store);
}
}
now is fixed.
i've start to update the chat for 3.8 version.
hi