The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
|||
|
|||
![]()
When you have a multiple selection field (like checkboxes), the value is stored as a number where each bit represents one of the options. So unfortunately that makes it a little more complicated to display. You need to do something like:
Code:
<!-- Sports --> <vb:if condition="$post['field8']"> <dt>sports</dt> <vb:if condition="$post['field8'] & 1"><dd>Football</dd></vb:if> <vb:if condition="$post['field8'] & 2"><dd>Soccer</dd></vb:if> </vb:if> <!-- Sports --> Each value is 2 times the previous value, so if you have more than 2 choices the next values would be 4, 8, 16, 32, 64, etc. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|