Alright, here is how I did it on my testboard (I had to turn off Verify Email address, but if its on I doubt there will be any problems)
Make a back-up of register.php if you use this - or test it on a testboard
Get the ID of the usergroup you want new users to be put into.
Open register.php
Find;
PHP Code:
if ($verifyemail) {
$newusergroupid=3;
} else {
if ($moderatenewmembers or $coppauser) {
$newusergroupid=4;
} else {
$newusergroupid=2;
}
}
Change the
2 to the new usergroup ID.
Find:
PHP Code:
(NULL, $userid, ".time().", '$activateid', 0, " . iif($newusergroupid == 4, 4, 2) . ")
Change the
2 to the new usergroup ID.
Find:
PHP Code:
$usergroup=$DB_site->query_first("SELECT usertitle FROM usergroup WHERE usergroupid=2");
Change the
2 to the new usergroup ID.
That should work, as I said make a backup of register.php