Support

Account

Home Forums Add-ons Repeater Field update_field() will not remove lines from repeater Reply To: update_field() will not remove lines from repeater

  • Removing a row from a repeater is different to update_field.

    If you check the docs

    You need something like:

    // Delete the first row of data.
    delete_row('images', 1);

    Where 1 is the row number and images if the field name