2014-08-13, 01:03 PM
2014-08-13, 01:07 PM
I believe their isn't a setting for that, but there is a plugin for it, i've used it before.
2014-08-13, 01:30 PM
This plugin: https://github.com/lukasamd/MyBB-Style_Usernames
2014-08-13, 02:13 PM
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
Thank you D666 and JonathanP
Edit...
i have misspoken can't make it myself
2014-08-13, 02:38 PM
You can also download this plugin from mods database:
http://mods.mybb.com/view/style-usernames
Version in github is always current
http://mods.mybb.com/view/style-usernames
Version in github is always current
2015-03-01, 05:39 PM
(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
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
2015-03-01, 05:42 PM
Can't confirm this issue.
Ltest version on github is for MyBB 1.8:
https://github.com/lukasamd/MyBB-Style_U...rnames.php
Ltest version on github is for MyBB 1.8:
https://github.com/lukasamd/MyBB-Style_U...rnames.php
2015-03-01, 06:14 PM
(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']);