Quote:
Originally Posted by taffy056
Two questions before I install this if you don't mind.
1) Can you restrict this to certain usergroups?
2) Does this have the ability to make the forum invite only?
Many thanks.
|
1) Can you restrict this to certain usergroups?
=> If you want to restrict this feature for guests etc. then do this :
Quote:
1. Open Upload/adiinviter.php
Find :
PHP Code:
print_output($templater->render());
Replace with :
PHP Code:
if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
}
else
{
print_output($templater->render());
}
Repeat above find and replace procedure for Upload/adiinviter_next.php and Upload/adiinviter_supported.php also.
|
It will prevent access to non logged in users. Thats all you can do in free version.
2) Does this have the ability to make the forum invite only?
=>I dont really get your question. What you want to do?
Quote:
Originally Posted by angeljs
Yes, that's working nicely now, thank you 
|
You are welcome.