MyBB Community Forums

Full Version: Change usergroup in newest member?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey I have done the usergroup change on the newest member. But it doesn't give exact properties. I want it to change to be exact.

Here's mine:
[Image: 5HOM7.png]

That newest member is in the group "Registered" it changed the color of the member but its bold. When it shouldn't be.

I used this code for it:
$q = $db->fetch_array($db->simple_select("users", "usergroup, displaygroup", "uid='{$stats['lastuid']}'", array("limit" => 1)));
        $newestmember = build_profile_link(format_name($stats['lastusername'], $q['usergroup'], $q['displaygroup']), $stats['lastuid']);

And heres the markup for the usergroup style:
<span style="color: #8B0000;">{username}</span>

Any help?