04-07-2008, 06:35 PM
This will soon be an installable mod. For now, it's a template and file edit.
What this does is it adds your user ID in your post. I know this has been done numerous times, but the text on mine is user friendly lol.
Also, I like to be legit, as in I don't want ANY loose text in templates, meaning it's all language arrays or whatever you call them
Open inc/languages/english/global.lang.php and find:
What this does is it adds your user ID in your post. I know this has been done numerous times, but the text on mine is user friendly lol.
Also, I like to be legit, as in I don't want ANY loose text in templates, meaning it's all language arrays or whatever you call them

Open inc/languages/english/global.lang.php and find:
Code:
$l['postbit_full_edit'] = "Full Edit";
Add Below:
Code:
$l['postbit_uid'] = "Member number ";
Now, in the ACP, go edit the templates of whatever skin you want, and then in Postbit Templates->postbit_author_user:
Code:
{$lang->postbit_joined} {$post['userregdate']}<br />
Add Below:
Code:
{$lang->postbit_uid}<strong>{$post['uid']}</strong><br />
and you're done. Hope you like it 