Quote:
Originally Posted by Kane@airrifle
In the forum permissions manager you can set zero access to everything for any user group. Works perfectly well on my 4.2.5 forums.
If you are paranoid about links from private forums being shared on other platforms you can also make a redirect plugin to replace the standard "no permission" message a non credentialed user may receive.
EG:
Hook: error_fetch
Title: Redirect Private Threads
Code:
Code:
if (!isset($vbulletin->userinfo['userid']) OR $vbulletin->userinfo['userid'] == 0)
{
$vbulletin->url = 'https://www.whateverpageyouwantotredirectto.com/';
eval(print_standard_redirect('no permission'));
}
|
Yes, no access but those forums will still be visible, just not the threads. I wanted the forums to be completely invisible to guests which is accomplished now.
Thanks for the reply.