We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 40088
    • 708 Posts
    Revo 2.3.3
    getPage 1.2.4
    NewsPublisher 2.0.2

    For some reason I don't understand my pagination suddenly broke. I'm using getPage (and getResources) to list the resources created by specific members (with NewsPublisher).

    Looking at the source, the pagination links are being generated with tragically broken code. I've searched all the templates, chunks and the database but I'm unable to find where the strange code is coming from. It was working fine, then it wasn't.

    Here's the generated link code:
    <a class="active" owner,="" mysite="" href="http://mysite.com/member/my-articles.html">1</a>
    <aowner, mysite="" href="http://mysite.com/member/my-articles.html?page=2">2</aowner,>
    <aowner, mysite="" href="http://mysite.com/member/my-articles.html?page=2">Next</aowner,>
    <aowner, mysite="" href="http://mysite.com/member/my-articles.html?page=2">Last</aowner,>


    I'm starting to wonder if there's a conflict with another add-on. I have updated a couple recently.

    This question has been answered by todd.b. See the first response.

      Todd
    • GetPage has its own tpls for the pagination parts. What does your getPage snippet call look like?
        Studying MODX in the desert - http://sottwell.com
        Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
        Join the Slack Community - http://modx.org
        • 40088
        • 708 Posts
        [[!getPage@Pagination?
            &elementClass=`modSnippet`
            &element=`getResources`
            &parents=`4`
            &resources=`-1`
            &includeTVs=`1`
            &where=`{"createdby:=":[[!+modx.user.id]]}`
            &showHidden=`1`
            &sortby=`publishedon`
            &sortdir=`DESC`
            &tplPath=`static/chunks/`
            &tpl=`@FILE memberTutorialResult.html`
            &hideContainers=`1`
            &toPlaceholder=`tutorialResults`
            &limit=`3`
            &pageLimit=`5`
            &totalVar=`total`
            &pageNavVar=`page.nav`
        ]]
          Todd
          • 4172
          • 5,888 Posts
          did you check, what you have in the @Pagination - Properties?
            -------------------------------

            you can buy me a beer, if you like MIGX

            http://webcmsolutions.de/migx.html

            Thanks!
          • discuss.answer
            • 40088
            • 708 Posts
            Removing
            [[+classes]]

            from
            <li class="control"><a[[+classes]][[+title]] href="[[+href]]">

            fixed the problem. [ed. note: todd.b last edited this post 8 years, 10 months ago.]
              Todd