- This topic has 3 replies, 2 voices, and was last updated 5 years, 11 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Tagged: pagination
Are you using the Shortcode method to display the results?
If so, follow this guide to customizing (or did you already?):
https://searchandfilter.com/documentation/search-results/using-a-shortcode/#customising-the-results
See this code line:
Page <?php echo $query->query['paged']; ?> of <?php echo $query->max_num_pages; ?><br />
Replace that with:
<?php if ($query->max_num_pages > 1 } ?>
Page <?php echo $query->query['paged']; ?> of <?php echo $query->max_num_pages; ?><br />
<?php } ?>
I think that would work.