Support

Account

Home Forums Add-ons Repeater Field Selecting a nested repeater field value without looping. Reply To: Selecting a nested repeater field value without looping.

  • I found it 🙂

    <?php
    
    $one = $rows[0]['nested_repeater_field_name'][0]['sub_field_name']; 
    
    ?>

    Somehow I added the answer in the question.
    Just make sure each value is an array when going deeper in the array.

    $one = $rows[array][array][array]['sub_field_name']

    Peace out!