Support

Account

Home Forums Bug Reports Problem getting values from fields in group layout (Options page) Reply To: Problem getting values from fields in group layout (Options page)

  • Late reply, but maybe this will help other people:

    Instead of struggling with have_rows, do a foreach

    <?php
    $group = get_field('groupname');
    $repeater = $group['repeatername'];
    foreach($repeater as $value){
    	//inside loop / repeater
    	echo $value['fieldname']; // the field name you desire 
    
    } 
    ?>