Hello ?
I have set up pagination on a mulitlanguage site.
I've done this before, but this time I have a problem I can't solve.
Pagination is activated on 'parent-template' and 'child-template' just to be sure ?
This is my code:
$children = $page->children('limit=1');
foreach($children as $child) {
$title = $child->title;
echo $title;
}
echo $children->renderPager();
The navigation is output correctly and the link look correct as well 'parent-page/page2/'.
But when I click the link, the site seems to redirect back to 'parent-page/
Any help would be greatly appreciated ?
- Peter