Support

Account

Home Forums Add-ons Repeater Field Collapse specific Repeater fields by default Reply To: Collapse specific Repeater fields by default

  • You would need to target the specific rows. For example:

    
    // target all except 1st row
    $('.acf-repeater .acf-row+.acf-row').addClass('-collapsed');
    

    More than this I’d need more specifics on what your criteria is for collapsing a row.