Is there a quick way to setup a closed (private) UNA community? I'm currently hiding all the content by setting the page visibility to 'selected levels', but this is extremely tedious work. Can it be set globally?
You may also disable all actions for Unauthenticated users in Permissions level - it will hide the detailed content of your site from guests. Other variants include the code changes (not good for the auto-upgrades) or database mass-changing in the table `sys_object_pages` like with the next query (backup this table first):
UPDATE `sys_object_pages` SET `visible_for_levels`='510'
Hello Veedoo !
You may also disable all actions for Unauthenticated users in Permissions level - it will hide the detailed content of your site from guests. Other variants include the code changes (not good for the auto-upgrades) or database mass-changing in the table `sys_object_pages` like with the next query (backup this table first):
UPDATE `sys_object_pages` SET `visible_for_levels`='510'
LeonidS - great, thanks. This is super helpful.