- This topic has 3 replies, 2 voices, and was last updated 6 years, 9 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.
Forums › Forums › Search & Filter Pro › Google map not rendering after applying a filter
Tagged: acf, google maps, hidden google map
If the map is visible when the posts loads, but disappears when an Ajax refresh of the page is made, and if you disable Ajax, and then after filtering it does show, then you need to to trigger the maps to reload after our Ajax filter is run, like this:
<script>(function ( $ ) {
"use strict";
$(document).on("sf:ajaxfinish", ".searchandfilter", function(){
// so load your maps here again
});
}(jQuery));</script>