Support

Account

Forum Replies Created

  • 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;
    }
Viewing 1 post (of 1 total)