|
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")
Can I do this with the "additional field"?
|