MyBB Community Forums

Full Version: How to add user id
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would to add member's user id under their name in their profile and postbits. If that is possible...
Postbit [ ACP - Templates - Modify/Delete - Default Templates [ Expand ] - Post Bit Templates - postbit_author_user ]

Add
UserId: {$post['uid']}

MemberProfile [ ACP - Templates - Modify/Delete - Default Templates [ Expand ] - Member Templates - member_profile ]

Find
({$usertitle})<br />

Add below or above, it depends where you want to display it;
UserId: {$memprofile['uid']}
or
UserId: {$uid}
Thanks lex...