Forums › Forums › Search & Filter Pro › Pagination not working when in default “all results showing” mode
Tagged: pagination
- This topic has 32 replies, 2 voices, and was last updated 4 years, 10 months ago by Trevor.
-
Anonymous(Private) January 31, 2020 at 4:01 pm #232780
Hi Trevor,
Solved the issue by switching to the default WordPress pagination code below:
the_posts_pagination( array(
‘mid_size’ => 2,
‘prev_text’ => __( ‘Back’, ‘textdomain’ ),
‘next_text’ => __( ‘Onward’, ‘textdomain’ ),
) );I consider that problem fixed. The solution here is steer clear of custom pagination codes.
The only tiny issue remaining is how to get S&F to show the total search results found
and not the number of posts on that page. Is this doable?
So I mean I want it to display “Found you 6 posts” at the top if there were 6 results even if only 3 posts can be displayed on the actual page. -
AuthorPosts