I had just now figured that out and came back to tell you. Lol! BUT... IT ALL WORKS NOW!! Yeay!!!!
Thanks sooooo much for your help!! I really appreciate it!
For anyone that wants to know, the final working code to display a custom user profile field variable (multiple selection checkbox values) in a template is:
Code:
<vb:if condition="$userinfo['field23'] & 1">
Unknown</vb:if>
<vb:if condition="$userinfo['field23'] & 2">
No Food</vb:if>
<vb:if condition="$userinfo['field23'] & 4">
Breakfast</vb:if>
<vb:if condition="$userinfo['field23'] & 8">
Lunch</vb:if>
<vb:if condition="$userinfo['field23'] & 16">
Dinner</vb:if>
<vb:if condition="$userinfo['field23'] & 32">
Snacks</vb:if>
Edit the numbers accordingly, of course.