We do offer chat. If no supporter is available to chat, the support will only offer to create a ticket.
Regarding the /service-map/ page, you are using two views, when you need to use only one of them:
- The search filters are from the "Map Search" view hidden link
- The results(map, and markers) are from the "Locations" view hidden link
I copied the search filters from the "Map Search" view to the "Locations" view, and I rebuilt the underlying query filters. We only need a taxonomy filter and a distance filter. The taxonomy filter seems to work, but the distance filter is not.
The distance search will not work because the database version does not support geolocation distance. The current database version is 5.5.68-MariaDB, and I think it is equivalent to MySQL 5.5. The distance search requires MySQL 5.6 and above, which I believe is equivalent to MariaDB 10. Check the Toolset requirements https://toolset.com/toolset-requirements/
Check this article hidden link
The page is built using Divi, and you want to display the search form in a different Divi module than the results, right? Unfortunately the current Toolset View module does not allow that, so we have to workaround it using shortcodes:
- Display the form using wpv-form-view shortcode:
{!{wpv-form-view name='locations' target_id="self"}!}
- Display the results using wpv-view shortcode:
{!{wpv-view name='locations' view_display='layout'}!}
If you want to display the form on a different page and point it to this page for results, use this, where 3277 is the ID of the results page:
{!{wpv-form-view name='locations' target_id="3277"}!}
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#vf-1496531
After upgrading your database server version, please make sure to visit all location posts on the backend and that each post marker appears on the address field. This will ensure that all the posts have the geolocation data stored in the database and can be used in distance searches.
I hope this helps. Let me know if you have any questions.