The new phone ticket works fine with these fields at the bottom of the form however I would like them at the top so I have hard coded each field where I want them to appear. At this point everything is OK and the form submits and creates a ticket.
The issue with hard coding the fields in is that they are duplicated at the top and bottom of the form. To get around this I have attempted to comment out the default dynamic field function at the bottom of the form but this stops the form from being submitted.
Example of hard coded field:
Code: Select all
<!-- dtl:block:DynamicField_System -->
<div class="Row Row_DynamicField_$QData{"Name"}">
$Data{"Label"}
<div class="Field">
$Data{"Field"}
</div>
<div class="Clear"></div>
</div>
<!-- dtl:block:DynamicField_System -->
Code: Select all
# <!-- dtl:block:DynamicField -->
# <div class="Row Row_DynamicField_$QData{"Name"}">
# $Data{"Label"}
# <div class="Field">
# $Data{"Field"}
# </div>
# <div class="Clear"></div>
# </div>
# <!-- dtl:block:DynamicField -->
Has anyone else had this problem or know a solution?
Thanks