Support

Account

Home Forums Backend Issues (wp-admin) Clone field: conditional logic not available Reply To: Clone field: conditional logic not available

  • I was trying to do the same thing and I came up with an alternate solution.

    I set the Clone field’s Display to Group and then gave it a CSS class of fake-seamless.

    Then I just created a file with some simple CSS and enqueued it to the page using the acf/input/admin_enqueue_scripts action.

    The CSS I used was:

    .acf-fields > .acf-field.fake-seamless { padding: 0; }
    .acf-field.fake-seamless > .acf-label { margin: 0; }
    .acf-field.fake-seamless > .acf-label label { display: none; }
    .fake-seamless .acf-clone-fields { border: none; }