MyBB Community Forums

Full Version: Change the font of username
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello how can i change the font of a custom username using Conditional Template u know phptpl that using it how can i ?
It is possible, but then you have to edit postbit, boardstats, and memberpfoiles and all other crap. Toungue
It Depends on the member's group
ACP > Members & Groups > Groups > choose the group that you want >Username Style
Here your able to use html for example
<font color=red><b><i>{username}</i></b></font>
and it will appear like this
Username
And if you want the username style to appear everywhere for example moderated by , use this plugin
https://github.com/lukasamd/MyBB-Style_Usernames
(2014-07-17, 03:32 PM)MuhammedSuleiman Wrote: [ -> ]It Depends on the member's group
ACP > Members & Groups > Groups > choose the group that you want >Username Style
Here your able to use html for example
<font color=red><b><i>{username}</i></b></font>
and it will appear like this
Username
And if you want the username style to appear everywhere for example moderated by , use this plugin
https://github.com/lukasamd/MyBB-Style_Usernames
He just want that for a specific user, not all the users. So thats why he is asking if its possible to do this by doing php in templates, like this:

<if $memprofile['uid'] == UIDHERE then>Custom username, or whatever..<else>{something}</if>
Memberprofile

<if $post['uid'] == UIDHERE then>Custom username, or whatever..<else>{something}</if>
Postbit
ok so can u say where or which all templates i must replace this :3 or just make a tut please xD Toungue