youradhere4222
07-20-2008, 04:05 PM
Hello -
I included code in my postbit template to display a profile field in the postbit.
<div class="smallfont">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
<if condition="$post[field7]"><div class="smallfont">Affiliation: $post[field7]</div></if>
$template_hook[postbit_userinfo_right_after_posts]
<if condition="$show['infraction']"><div>$vbphrase[infractions]: The bold, blue text is the text I added in. I'm also using the postbit that vbulletin.com is using, so I'm editing the postbit template, not the postbit_legacy template.
It is listed as field7, so I'm guessing I have the field right. It's a multiple-selection menu with 24 options, and a maximum of one can be selected. It's not private, it's not searchable but it does display on the Member's list.
The problem I'm experiencing is that the text Affiliation: shows up fine, but the text displayed isn't what I want. I'm looking for words - as those are the selections, but instead I'm getting numbers.
At first I selected the second option, and it displayed as a 2. Then I selected the last option, and it's displaying as 8388608.
Does anyone know what the problem could be?
I included code in my postbit template to display a profile field in the postbit.
<div class="smallfont">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>
$vbphrase[posts]: $post[posts]
</div>
<if condition="$post[field7]"><div class="smallfont">Affiliation: $post[field7]</div></if>
$template_hook[postbit_userinfo_right_after_posts]
<if condition="$show['infraction']"><div>$vbphrase[infractions]: The bold, blue text is the text I added in. I'm also using the postbit that vbulletin.com is using, so I'm editing the postbit template, not the postbit_legacy template.
It is listed as field7, so I'm guessing I have the field right. It's a multiple-selection menu with 24 options, and a maximum of one can be selected. It's not private, it's not searchable but it does display on the Member's list.
The problem I'm experiencing is that the text Affiliation: shows up fine, but the text displayed isn't what I want. I'm looking for words - as those are the selections, but instead I'm getting numbers.
At first I selected the second option, and it displayed as a 2. Then I selected the last option, and it's displaying as 8388608.
Does anyone know what the problem could be?