$yachts = $pages->find("template=newyachts, limit=3, sort=date");
foreach($yachts as $s) {
... }
$pagination = $yachts->renderPager();
echo $pagination;
Pagination works well...In this case
$yachts = $pages->get("$page->path")->find("template=newyachts, limit=1, sort=date");
foreach($yachts as $s) {
... }
$pagination = $yachts->renderPager();
echo $pagination;
don't work... In both cases, I have activated the url -> allow pageswhere is the mistake? Thank you.













