MyBB Community Forums

Full Version: How to automatically show username formatting?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I don't really understand this...

Basically, for my showgroups.php page, I have to edit things manually there. Including username styles.

Does anyone know how I could just have the username styles show themselves instead of me having to constantly change it?? Thanks
Have you tried using the {$mybb->user['uid']} variable to tell the page to read it that way? Or something along those lines. Either way, you'd need a variable on the page to do that.
NOTE: you need queries inserted to make it work

<span><strong>'. build_profile_link($users['username'], $users['uid']). '</strong></span></a></strong></span>
(2015-03-02, 04:04 PM)PhantomD Wrote: [ -> ]NOTE: you need queries inserted to make it work


<span><strong>'. build_profile_link($users['username'], $users['uid']). '</strong></span></a></strong></span>

Thank you.