Quote:
Originally Posted by imran_khatri
Pls Explane More Sir..........
i don't under stand pls explane more in wich template to edite and .......
|
It's difficult to know which template you need to edit since you aren't stating where in your forums you want the userid to show - my guess is that it's the postbit or postbit_legacy template in which you should add $userinfo[userid] wherever you want the member's userid to appear within the template.
you can get to the postbit template in AdminCP>Style&Templates>StyleManager> then click expand templates and search for the template, copy and paste the html into dreamweaver or notepad, and then...
Find
PHP Code:
<div>
$vbphrase[posts]: $post[posts]
</div>
and below that, add
PHP Code:
$userinfo[userid]
so it looks like
PHP Code:
<div>
$vbphrase[posts]: $post[posts]
</div>
$userinfo[userid]
then save your template and refresh your thread youre viewing.
make sure to save a copy of your template before editing in case you need to revert.