MODX Revo专辑列表分页

时间:2016-06-08 12:21:38

标签: modx modx-revolution

我想使用图库为我的相册列表添加分页。 试着用getPage做到这一点。 对于专辑内的照片,所有作品都很完美:

[[!getPage?
        &element=`Gallery`
        &limit=`8`
        &album=`portfolio`
        &totalVar=`gallery.total`
        &thumbWidth=`180`
        &thumbHeight=`150`
        &containerTpl=`NewGalleryAlbumTpl`
        &thumbTpl=`NewGalItemThumb`
        &cache=`0`
        &cache_expires=`0`
        &pageNavVar=`page.nav`
    ]]
<div class="system-nav-orange">
<span class="pages">Page [[+page]] from [[+pageCount]]</span>
<ul class="pager">
[[!+page.nav]]
</ul></div>
<div class="clear"></div>

但是对于专辑分页显示,但不起作用:

    [[!getPage?
        &element=`galleryalbums` 
        &rowTpl=`rowTpl`  
        &pageNavVar=`page.nav` 
        &limit=`1`]]
<div class="system-nav-orange">
<span class="pages">Page [[+page]] from [[+pageCount]]</span>
<ul class="pager">
[[!+page.nav]]
</ul></div>
<div class="clear"></div>

我做错了什么?

1 个答案:

答案 0 :(得分:2)

图库不支持getPage开箱。你可以edit the source code但不是很有前途的证据。还有一项工作可能不需要更改代码:https://forums.modx.com/thread/37769/revolution-gallery---how-to-add-pagination?page=2#dis-post-439685

但是我建议看看MoreGallery。它是一个额外的优质,所以不是免费的,但support pagination并且远远优于Gallery imo。