Hi, when i use nested repeater in PW 3 it will only output the first entry from the second repeater.
Code:
<?php foreach ($page->first_rep as $c): ?>
<?php echo $c->fields; ?>
<?php foreach ($c->second_rep as $p): ?>
<?php echo $p->fields; ?>
<?php endforeach; ?>
<?php endforeach; ?>
Can anybody help me?