I have a field that I want hidden, but cannot see where to set the type. I've had a look at the view / modal and controller with no luck? Can someone please advise where to set this? I can't see class - controls in the css either? I really need some help as this is the last piece of the puzzle for my component. Can I set it amongst the following code for the input field?
<div class="controls">
<?php echo $field->input; ?>
</div>
In the form view I had
<div class="control-group <?php echo 'field-' . $field->id . $field->responsive; ?>">
I researched and have changed to
<div class="control-group <?php echo 'field-' . $field->id . $field->responsive; ?>">style="display:none">
which hides the corresponding field - this works on all fields in the view.