Support

Account

Home Forums General Issues Using unique ID/Slug in template Reply To: Using unique ID/Slug in template

  • If you are using the same repeater for 2 loops you need to reset the rows after each loop.

    `
    if (have_rows(‘repeater’)) {
    while (have_rows(‘repeater’)) {
    //……
    }
    reset_rows();
    }