I mostly have problems with a repeater field.
You can disable it very easily with some styling:
SCSS:.
.edit-post-sidebar {
.acf-field {
&.acf-field-repeater {
&[data-name="field-name"] {
display: none !important;
}
}
}
}
Or CSSl:
.edit-post-sidebar .acf-field.acf-field-repeater[data-name=field-name] {
display: none !important;
}