Message Text |
I have a new TEXT field, {MY_FIELD}, using multiple checkboxes for it's values: One,Two,Three,Four,Five,Six
Shows and works fine from the edit and submit templates but I'm not having much luck getting anything to display in the displaylinks.tpl
..
{LINKTITLE}
</IF>
{LINKNEW} {LINKISUPDATED} {LINKADMIN}
<IF {LINKISREAD}><img src="templates/default/images/viewed.png"></IF>
<IF {LINKMY_FIELD} contains One><img src="templates/default/images/my_field_one.gif"></IF>
<IF {LINKMY_FIELD} contains Two><img src="templates/default/images/my_field_two.gif"></IF>
..
What am I missing?
Duh, I didn't add to regular links section..
So.. now I'm a little further, except things blow up in function buffereval($code) with an error of "Parse error: syntax error, unexpected T_STRING in .."
Figure I'll try fiddling with the 'contains' directive and see what happens.. |