I'm very new to both Processwire and PHP so bare with me. Now I've set up everything in the different Fields, Pages and Templates. In one of the templates I have created a Repeater Field containing one Field that is a Page Reference and another Field that is a Text Field.
Now I've tried both
foreach ($page->template->fieldgroup as $f) {
echo $f->name . "<br>";
}
and
<?php echo $page->get("myfieldgroup"); ?>
Here I get the ID's from the Page Reference but nothing from the Text Field. The first example gave me nothing at all.
So how do fetch these results?