Good question...
The social group memberships are stored in the "socialgroupmembers" table in MySQL so it's not a simple query to simply add people based on usergroups... If there are hundreds or more people needed to be made part of a social group- too many to add manually, then I would recommend a php script- something that would increment through each user in the user table, decide if they are a member of a specific usergroup, and if so add them as a memeber to the socialgroupmemebers table. This is something I might be able to do but being it directly accesses your forum database I wouldn't want that responsibility- if you have any PHP/MySQL knowledge though this shouldn't be difficult to accomplish.
|