Topic: choose usergroup

If I made a new usergroup and want to allow users to choose between a member account and this account, how would I go about doing this?
Also, is there a way to add profile fields to just one usergroup?
Thanks. smile

2

Re: choose usergroup

Yes, you can do this. Add new definition in /include/common.php, edit /profile.php, and /admin_groups.php

Hm... every pixel has it's own destiny

Re: choose usergroup

Wouldn't that affect all of the groups though?

4

Re: choose usergroup

pun_admin defined as 1, pun_member as 4. if u define you_pun_account as 5, f.e., all comparing (such as $pun_user['g_id']<PUN_MEMBER) will be correct.. but u need to rewrite some comparing (like an $pun_user['g_id']==PUN_MEMBER).

Hm... every pixel has it's own destiny

Re: choose usergroup

Oh, okay. Thank you.