Youre correct.
I was wrong in my original update.
By removing the == all it did was allow things to happen without being dependant
on the selections.
Thank you very much. It works great now by simply providing the number of the option.
PHP Code:
<if condition="$post[field8] == x">do</if>
The only problem is that it appears only to work with the first 2 options.
Below I will provide my actual postbit_legacy edit to make things easier.
I am trying to display an image for each selection.
PHP Code:
<if condition="$post[field8] == 1"><img src="images/ranks/mlg.png" border="0" /></if>
<if condition="$post[field8] == 2"><img src="images/ranks/wsvg.png" border="0" /></if>
<if condition="$post[field8] == 3"><img src="images/ranks/wcg.png" border="0" /></if>
<if condition="$post[field8] == 4"><img src="images/ranks/egl.png" border="0" /></if>
I have a
Multiple-Selction Checkbox in the user profile with four options.
MLG
WSVG
WCG
EGL
hmm... I forgot the options are binary storage so option3 is actually a value of 4
and option 4 is a value of 8.
This thread may have the answers.
http://www.vbulletin.com/forum/showpost.php?p=725845&postcount=2