• I can’t go to the next page because if I click on that option it shows the first page.
    This is current link method that shows first page:
    site.com/page/2/?f1=WORD&wpcfs=preset-1
    But if I change the link manually to this:
    site.com/?f1=WORD&wpcfs=preset-1&page=2
    It shows me page number 2.
    How can I resolve this problem?

Viewing 1 replies (of 1 total)
  • Hi,

    I’m not the developer of this plugin, but I also faced this problem and I fixed it with this custom pagination code:

    $current_page = !empty( $_GET[‘page’] ) ? $_GET[‘page’] : 1;
    $query = new WP_Query( array(
    ‘posts_per_page’ => 10,
    ‘paged’ => $current_page,
    ) );

    echo paginate_links( array(
    ‘base’ => site_url() . ‘%_%’,
    ‘format’ => ‘?page=%#%’,
    ‘current’ => $current_page,
    ) );

    wp_reset_postdata();

    • This reply was modified 1 year, 11 months ago by kusachiy.
Viewing 1 replies (of 1 total)
  • The topic ‘Pagination problem’ is closed to new replies.