Hi.
Go to the Script Edit > Defect module script and update these methods and add new one:
'to update
Sub Bug_New
On Error Resume Next
HideFields
On Error GoTo 0
End Sub
Sub Bug_MoveTo
On Error Resume Next
HideFields
On Error GoTo 0
End Sub
'to add
Sub HideFields
Bug_Fields.Field("BG_USER_01").IsVisible = false 'don't hide fields with required attribute
end sub
Br, Tomas