2019-07-03, 09:19 PM
I have the following thoughts about the showteam page:
1) A joined date would be useful info to display - this is not captured when a user joins a group.
2) Also user avatar - like Invision.
3) the information that is displayed - last visit, email and pm buttons - is it really relevant to have it here ?
4) What about adding pagination to the groups (also like invision) - what if you have a group with 100+ members.
Lastly in showteam.php i see:
How about replacing that with:
Then in the showteam_moderators_mod & showteam_usergroup_user templates we replace
with:
1) A joined date would be useful info to display - this is not captured when a user joins a group.
2) Also user avatar - like Invision.
3) the information that is displayed - last visit, email and pm buttons - is it really relevant to have it here ?
4) What about adding pagination to the groups (also like invision) - what if you have a group with 100+ members.
Lastly in showteam.php i see:
$user['username'] = format_name(htmlspecialchars_uni($user['username']), $user['usergroup'], $user['displaygroup']);
$user['profilelink'] = get_profile_link($user['uid']);
How about replacing that with:
$user['username'] = format_name(htmlspecialchars_uni($user['username']), $user['usergroup'], $user['displaygroup']);
$user['profilelink'] = build_profile_link($user['username'], $user['uid']);
Then in the showteam_moderators_mod & showteam_usergroup_user templates we replace
<a href="{$user['profilelink']}"><strong>{$user['username']}</strong></a>
with:
{$user['profilelink']}