Yes I did remove the conditionals. So we need to state that the groups are the same if not it asumes all to be members no other usergroup at the integrated install. An entry at the manual can be useful to remember this.
0/5
1
2
3
4
5
Sorry, you don't have permission to post posts. Log in, or register if you haven't yet.
Comments on changing member usergroup
Forum Regular
Usergroup: Customer
Joined: Aug 09, 2004
Location: Chile
Total Topics: 172
Total Comments: 462
At editmembers template we have:
<IF not {INTEGRATION}>
<IF {THISMEMBERISADMIN}>
<tr>
<td class="labelscolumn"><span class="labels">{LANG_PROFILE_USERGROUP}:</span></td>
<td class="optionscolumn"><select name="usergroup">{MEMBERUSERGROUPOPTIONS}</select>
</td>
</tr>
<tr>
<td class="labelscolumn"><span class="labels">{LANG_EDITPROFILE_SECONDARYGROUPS}:</span></td>
<td class="optionscolumn"><select multiple size="5" name="secondarygroups[]">{MEMBERSECONDARYUSERGROUPOPTIONS}</select>
<input type="hidden" name="secondarygroups[123]" value="" />
</td>
</tr>
</IF>
</IF>
But how can we change the usergroup of a member if we do have this installation integrated with another wsnlinks ?
I change it directly at phpmyadmin at the members table, but at the integrated install it shows me always as a member not changing the usergroup.
I offered usergrop promotion to my members without realizing this difficulty so I really apreciate your help on this.
Daniel.
Forum Regular
Usergroup: Customer
Joined: Aug 09, 2004
Location: Chile
Total Topics: 172
Total Comments: 462
OK
I have just solved by includding at the integration file:
$group6 = '6';
$group7 = '7';
$group8 = '8';
Anyway I believe that this shall be the behaviour by default if nothing different is stated?
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
If it's another WSN and your groups are the same in all, you can remove the template conditional.
Usergroups will always need to be mapped. People will frequently have different groups in different integrated installs... I do.
Forum Regular
Usergroup: Customer
Joined: Aug 09, 2004
Location: Chile
Total Topics: 172
Total Comments: 462
Yes I did remove the conditionals. So we need to state that the groups are the same if not it asumes all to be members no other usergroup at the integrated install. An entry at the manual can be useful to remember this.