Topic: Plz in the next Version Color of User Group
Ok change the colors i means if this is user the color will be blue if it's admin the color will be red if it's Modeador the color will be black.
the color is radmonal but somthing like that plz?
You are not logged in. Please login or register.
PunBB Forums → Feature requests → Plz in the next Version Color of User Group
Ok change the colors i means if this is user the color will be blue if it's admin the color will be red if it's Modeador the color will be black.
the color is radmonal but somthing like that plz?
You can add this in pretty easily, into viewtopic.php, change
$username = '<a href="profile.php?id='.$cur_post['poster_id'].'">'.pun_htmlspecialchars($cur_post['username']).'</a>';
to
$group_colours = array(
1 => 'red',
2 => 'blue',
4 => 'green'
);
$username = '<a href="profile.php?id='.$cur_post['poster_id'].'"><span style="color:'.$group_colours[$pun_user['group_id']].'">'.pun_htmlspecialchars($cur_post['username']).'</span></a>';
and set the colours you like in the array.
Too complicated. Just echo the user title or group as a class and then style with the stylesheet.
Oh thank you very much...
PunBB Forums → Feature requests → Plz in the next Version Color of User Group
Powered by PunBB, supported by Informer Technologies, Inc.