This is great and just what I was looking for, thanks.
One question though, how do I add commas for the multi-selection fields?
I used method 1 and have this code, which works:
Code:
<vb:if condition="$post['field5']"><dt>Spil</dt><dd>
<vb:if condition="$post['field5'] & 1">Ingen</vb:if>
<vb:if condition="$post['field5'] & 2">WoW</vb:if>
<vb:if condition="$post['field5'] & 4">SWTOR</vb:if>
<vb:if condition="$post['field5'] & 8">Rift</vb:if>
<vb:if condition="$post['field5'] & 16">Andet</dd>
</vb:if>
and I tried modifying the code from
here to vBulletin 4.x but I am not a coder at all, so adding commas didn't work.
Any help much appreciated!