Quote:
Originally posted by FireFly
In register.php replace in this:
2 to whatever the ID of your that usergroup is. I can't check the files right now but I'm pretty sure that's the line.
|
Hi Firefly, actually the register.php code in 2.2.5 says:
Quote:
if ($verifyemail) {
$newusergroupid=3;
} else {
if ($moderatenewmembers or $coppauser) {
$newusergroupid=4;
} else {
$newusergroupid=2;
}
}
|
In this case, I want to verify email, and then after that the program should move users to another custom grp automatically after email verification is done.
Right now after email verification is done, all new users are moved to the "registered users group"
I have not glanced at the code later on, but would changing 2 to another ID do this?
Thanks again!