Hi,
I have a similar problem. I have multiple lists of series. Each series has multiple sessions. So, I tried to build a repeater inside a repeater, like this.
Download Content – Repeater
— Series Title – Text
— Session Title – Repeater
— Title
— Speaker
1 table per series
1 row for each session title
This is what I have so far, and all I can get is the main series title, but it’s not calling any of the sessions: http://4-11.org/download/?page_id=2
<?php
$rows = get_field('download_content');
if($rows)
{
echo '<ul>';
foreach($rows as $row)
{
echo '<li>' . $row['series_title'] ;
$rows = get_field('session_title') ;
if($rows)
{
echo '<ul>';
foreach($rows as $row)
{
echo '<li>' . $row['title']. ','. $row['speaker'] .', etc</li>';
}
echo '</ul></li>';
}
}
echo '</ul>';
}
?>