I need to hide some fields in the back-end article form.
Since there is no "visible in back-end" option in the Content Type Manager I keep overriding the /administrator/components/com_form2content/views/form/tmpl/edit.php file in order to add a class to the div control-group.
I change the line 113 (ie. for the 6.17.4 version) from
<div class="control-group">
to
<div class="control-group field<?php echo($field->id);?>">
It works but since this file keeps changing in every new version, I need to redo the same thing again and again…
Could you please add this in your code? (or something more clever!)
Thanks