MyBB Community Forums

Full Version: [REQ] ACROSS WHOLE BOARD
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok I want to put a image next to my user's username across board.

2ways I can do this..

YOu can tell me how to enable bbcode in the users profile so i can just add [img] codes and it would do a image next to there username [ BUT when they login it's still their same username]

OR there's the USERS Star mod for phpbb2, But it only let's u have 1 Star.. I need more stars or "images" to be allowed... And it doesnt show up on the forumlist_body.html page.

If you would please help me achieve this ! ThankS!
You can make a separate usergroup for the user, and in the username format, add the <img> tag at the beginning of the username.
ok yea but it doesnt showup on the forumlist page and viewtopic page??
The above will show in the usernames in posts in showthread.php, but will not show up in index or forumdisplay (it's not meant to). If you want the latter, you'll need a code modification for it.
Ok well unfortunately I need that mod for this to work,!


:-)

Because then no point to have this, lol.

Thanks!!
If you want formatted usernames to be displayed on the forumlist, you can do these code modifications:

Open up forumdisplay.php
Find:
SELECT t.*, $ratingadd t.username AS threadusername, u.username
Replace with
SELECT t.*, $ratingadd t.username AS threadusername, u.username, u.usergroup, u.displaygroup

Then find:
$thread['profilelink'] = build_profile_link($thread['username'], $thread['uid']);
Replace with:
$thread['profilelink'] = build_profile_link(format_name($thread['username'], $thread['usergroup'], $thread['displaygroup']), $thread['uid']);


Getting the name formatting to work on the "last poster" areas will require a fair amount of code modification, so I won't detail them. If you want these, please request a code modification in the appropriate forum.

Thanks
sweet thx <333
Also ,

http://community.mybboard.net/showthread.php?tid=29338

I made that thread for this

Do u still think it's possible? lol