A Toolset Map View was not using the distance selected in the search filter. The list results respected the chosen radius, but the map still used its own hard-coded distance value, so it showed extra results.
Solution:
A custom code snippet was added using the
wpv_view_settings
filter to sync the Map View distance settings from the URL parameters. The code updates the map radius, unit, and center from
toolset_maps_distance_radius
,
toolset_maps_distance_unit
, and
toolset_maps_distance_center
. The search View also needed to use a full page refresh so those URL parameters are available to the Map View. The customer confirmed this resolved the issue.
Images on the frontend were opening the media page even though the image link option had been set to “None”.
Solution:
The frontend content was not coming from the main WordPress editor. It was being loaded from a WYSIWYG custom field named editor, used by the View. The image links were still present in that custom field. After removing the link from the correct custom field, the frontend reflected the change. Future edits need to be made in that custom field, not in the main page content.