Help
Ask questions about how to do or fix things in Arrowchat
User avatar
JTrudgett
Customer
 
Posts: 3
Joined: 10 Jan 2015, 23:19

 

by JTrudgett 14 Jan 2015, 18:13

Is there an option or way to restrict chatrooms to users that are logged into my phpBB forum?
User avatar
Jason
Customer
 
Posts: 2356
Joined: 12 Dec 2009, 16:06

 

by Jason 14 Jan 2015, 22:30

If guest chat is enabled then no, at least not from the admin panel.
User avatar
JTrudgett
Customer
 
Posts: 3
Joined: 10 Jan 2015, 23:19

 

by JTrudgett 15 Jan 2015, 11:13

Thanks. I made this change which works for me.

Code: Select all
===================================================================
--- arrowchat/includes/js/arrowchat_core.dev.js   (revision )
+++ arrowchat/includes/js/arrowchat_core.dev.js   (revision )
@@ -4096,7 +4096,7 @@
             buildPopoutChatButton();
             u_is_mod == 1 && c_enable_moderation == 1 && buildModButton();
             c_notifications != 0 && buildOptionsButton();
-            c_chatrooms != 0 && buildChatroomsButton();
+            c_chatrooms != 0 && u_is_guest == 0 && buildChatroomsButton();
             buildBuddyListTab();
          }
          a('.arrowchat_powered_by').each(function(){this.style.setProperty('display','block','important');});