Forums Forums Search & Filter Pro Pagination Broken

Tagged: 

Viewing 10 posts - 1 through 10 (of 14 total)
  • Anonymous
    #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
    #235590

    Try changing the pagination selector to:

    ul.page-numbers a

    Anonymous
    #235604

    I did that already and still no 🙁

    Trevor
    #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?

    Anonymous
    #235690

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

    Trevor
    #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.

    Anonymous
    #236014

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

    Anonymous
    #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
    #236096
    This reply has been marked as private.
    Anonymous
    #236114
    This reply has been marked as private.
Viewing 10 posts - 1 through 10 (of 14 total)