Support

Account

Home Forums Add-ons Repeater Field Identifying row by shortcode attribute Reply To: Identifying row by shortcode attribute

  • if you do get_field($repeater); this should return an array containing a nested array for each row.

    
    // assumes $row = the row you want to get
    $rows = get_field($repeater);
    $values = $rows[$row - 1];
    echo $values[$text_field];
    echo $values[$texteares_field];