Support Forums

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Pagination Broken

Tagged: 

Viewing 10 posts - 1 through 10 (of 14 total)
  • Kate Wilson
    #235566

    When I use a Post Archive to Display my Results. The Pagination no longer works, it displays the pages but the links just reload the current page.

    https://nshof.org/nominees/

    Trevor Moderator
    #235590

    Try changing the pagination selector to:

    ul.page-numbers a

    Kate Wilson
    #235604

    I did that already and still no 🙁

    Trevor Moderator
    #235653

    That suggests that the PHP template in use is using non-standard pagination code. If you simply deactivate our plugin, can I assume that the pagination starts working again?

    Kate Wilson
    #235690

    Yes I was able to determine that there is a conflict so I was wondering if you had a suggestion?

    Trevor Moderator
    #235725

    I would try editing the template. First, make sure you are using a child theme, edit the file inside the child theme folder, not the parent theme.

    Find the pagination part and start by replacing it with the really basic, standard WordPress Codex pagination code:

    <div class="pagination">
      <div class="nav-previous"><?php next_posts_link( 'Older posts', $query->max_num_pages ); ?></div>
      <div class="nav-next"><?php previous_posts_link( 'Newer posts' ); ?></div>
    </div>

    Then, if that works, start to improve that code.

    Kate Wilson
    #236014

    I can’t “find the pagination part” is there a PHP file I should be looking for specifically?

    Kate Wilson
    #236030

    More information I have learned and can share. So I am using a Custom Post Type “Nominees” and a Custom Post Type Taxonomy “Nominee Categories”.

    It works on the Taxonomy but not the Post Type and the pages are Identical using Archive.php
    Works: https://nshof.org/nomination_categories/technical/
    Doesn’t work: https://nshof.org/nominees

    So is this the issue and do you have any ideas?

    Trevor Moderator
    #236096
    This reply has been marked as private.
    Kate Wilson
    #236114
    This reply has been marked as private.
Viewing 10 posts - 1 through 10 (of 14 total)

You must be logged in to reply to this topic.