Hi @crylian,
I may have found a minor omission in "zenpage-template-functions.php.
I was getting a html validation error.
The generated active link in the function below is not between
`[*] tags`
function printNewsPageListWithNav....
this part
`
for ($i=$j; $i <= min($total, $j+6); $i++) {
if($i == $current) {
[b]echo $i."\n"[/b]
`
I think `echo $i."\n"` should be `echo "<li>".$i." \n"`
Hope I helped.
Cheers