MyBB Community Forums

Full Version: Show formatted username?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a setting to show formatted username across the entire board?
I believe their isn't a setting for that, but there is a plugin for it, i've used it before.
Thanks guys very much though there was a setting but hey it's cool I can make that plugin my self.
Thank you D666 and JonathanP


Edit...

i have misspoken can't make it myself Smile
You can also download this plugin from mods database:
http://mods.mybb.com/view/style-usernames

Version in github is always current Wink
(2014-08-13, 02:38 PM)lukasamd Wrote: [ -> ]You can also download this plugin from mods database:
http://mods.mybb.com/view/style-usernames

Version in github is always current Wink

Not working on 1.8.4 also for the one you call the latests one on github still says "Style Usernames (MyBB 1.6)" in the admin panel please look below and see what i get
Can't confirm this issue.
Ltest version on github is for MyBB 1.8:
https://github.com/lukasamd/MyBB-Style_U...rnames.php
(2015-03-01, 05:42 PM)lukasamd Wrote: [ -> ]Can't confirm this issue.
Ltest version on github is for MyBB 1.8:
https://github.com/lukasamd/MyBB-Style_U...rnames.php


While it doesnt work with tabs for some reason it works for the first tab but none of the others please fix this

I have fixed my issue by hard coding it into functions_forumlist.php by adding the following code!

$lastposteruid = $lastpost_data['lastposteruid'];
					
$query = $db->query("SELECT username,usergroup,displaygroup FROM ".TABLE_PREFIX."users WHERE uid = '".$lastposteruid."'");
$query_array = $db->fetch_array($query);
$lastpost_data['lastposter'] = format_name($query_array['username'], $query_array['usergroup'], $query_array['displaygroup']);

Just above this code:

$lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid']);