This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.
Tell us what you are trying to do?
My map search for searches with many results correctly displays the first page of results and the pagination links at the bottom of the page. However, if you click on the pagination links, the resulting pages show no results.
As I am also dealing with another issue ( Split: Just noticed huge Google Cloud monthly bills 2), I have set up WAF rules to restrict access to this page to only people in Canada. Can you access it via VPN set to Canada? Otherwise, let me know your country so I can allow it as well.
I was able to access the page via VPN and I can see that no results are returned when paginating to the second page, but I can't see any more details to understand the cause.
Can we get access to your site to see how it is set up and check how many results would be expected?
Let me mark your next reply as private so that we can get log-in credentials from you—you may want to create a temporary admin user for us to use that you can later delete. And be sure to have a current backup of your site.
During troubleshooting, I found a custom code snippet 'noresults', in the Toolset custom code section, which was causing results to not show when pagination was used.
I've adjusted a line in it, from:
if(!isset($_REQUEST['wpv_filter_submit'])) {
To:
if(!isset($_GET['wpv_view_count'])) {
After this change, the results are showing with pagination too.