Option 1:
Code:
<if condition="$post[fieldx]=='1'">
Option 2:
Code:
<if condition="$post[fieldx]=='2'">
Option 3:
Code:
<if condition="$post[fieldx]=='4'">
Option 4:
Code:
<if condition="$post[fieldx]=='8'">
Option 5:
Code:
<if condition="$post[fieldx]=='16'">
Option 6:
Code:
<if condition="$post[fieldx]=='32'">
Option 7:
Code:
<if condition="$post[fieldx]=='64'">
Option 8:
Code:
<if condition="$post[fieldx]=='128'">
Note: With checkboxes, the total is cumlutive so if they have checked boxes 1,3,5 & 7 then they will have a fieldx value of 85 so you would need to calculate the values for each possible combination and use a large amount of if conditions to get the effect that you want.
I recommend using individual options for each one then you can toggle the information on and off.