call a specific category "additional field" in a template?
Hi!
I've add one "additional field" in a category (called "special format" and type checkbox) and I am wondering how can I call that specific field in the template.
The var is {$customboxes['title'][$z]}. I've tried a few things but it didn't work.
Chuck, I need to use the value in another place in the template, my idea is this:
- if the user checks that additional field checkbox, the Extra Text Fields #n won't be shown and for that I will modify the template changing this:
if ( $Globals['extranname'] != "" && !empty($extran))
into this:
if ( $Globals['extranname'] != "" && !empty($extran) && $customboxes['value'][1] != "checked")
If I have 20 additional fields and I can't call the 13th ($customboxes['value'][13]) anywhere else in the template because they are only accessible in that array you posted above, then seems I can't do it =(