PDA

View Full Version : How can I display member number?


Sop
07-15-2010, 06:47 AM
Hello I am using vBulletin 3.8.5 i want to display the member number in the member profile.
I guess that I should customize MEMBERINFO template, but what variable should I use?

PinkMilk
07-15-2010, 11:45 AM
$bbuserinfo[userid]

Sop
07-15-2010, 02:40 PM
$bbuserinfo[userid]

can you tell me how exactly because I writted in and nothing showed up


<if condition="$userinfo['userid'] == $bbuserinfo['userid']">
<script type="text/javascript" src="clientscript/vbulletin_profilefield_edit.js?v=$vboptions[simpleversion]"></script>
</if>
<script type="text/javascript">

BirdOPrey5
07-15-2010, 11:41 PM
You don't need any if statements and certainly no javascript...

wherever you want it to show in the template you just put: $bbuserinfo['userid']
You probably want to do something like: Member #: $bbuserinfo['userid']