Page 1 of 1

arrowchat and geusts

PostPosted: 13 Dec 2012, 09:38
by mnicholet
is there anyway i can remove the Chat (0) on the tool bar for geusts and then make it available for them once they login to chat to other members?

I still want geusts to be able to use the chat room. thanks

PostPosted: 13 Dec 2012, 09:56
by Jason
You could add the CSS #arrowchat_buddy_list_tab{display:none} but you'd need to only do it for guests.

So in the external.php file, after this line:

Code: Select all
require_once (dirname(__FILE__) . '/themes/' . $theme . '/css/style.css');


...you could do something like this:

Code: Select all
      if (check_if_guest($userid))
      {
         echo '#arrowchat_buddy_list_tab{display:none}';
      }


Untested but something like that (hopefully exactly that) will work.

Topic Closed

PostPosted: 16 Dec 2014, 00:26
by Staff Bot
[b]This thread has been locked because the last post is greater than six months old. There is a good chance that the information in this thread is outdated. Please open a new topic if you wish to discuss this further.[/b]