Then you need to put a lump of conditionals in your template or make a plugin with the conditionals in (what I would go for) and then stick some text in the plugin... Checkboxes are complicated;
if C1 is ticked: var = 1
if C2 is ticked: var = 2
if C3 is ticked: var = 4
if C4 is ticked: var = 8
if C1 and C3 are ticked: var = 5
which is why you need a lot of conditionals...
|