It bears repeating that I have only been using PW for two days before I go any further. I did readjust things to negate the repeater and only use a pageListSelectMultple in its place, which is working out well. My burden now is the proper output. I can spit out placeholder text accurately for how many "callouts" I have assigned to a page. But I can't spit out any fields assigned to my callout itself. Right now I am using this code:
<?php
foreach($page->callouts as $callout) {
echo'<div class="small-12 medium-4 large-4 columns">';
echo'{$calllout->title}';
echo'</div>';
}
?>
The html is output of course, but instead of my callouts actual title, I am getting {$callout->title}. Any assistance would be highly appreciated. I have done much reading, but just don't know what to do from here.