Hi,
I use the new Leaflet Map and so far it’s working fine, but I found an issue while using safari 12 browser.
The Marker Popup will not show up after clicking the marker. It works fine on all other browser except Safari.
Could you pls check my site? Link is in private content.
Thanks in advance.
Regards,
Sebastian
Hey SNiestroj,
Thank you for the inquiry.
Looks like this is a known issue on version 1.7.1 as discussed in the following thread.
// https://github.com/Leaflet/Leaflet/issues/7255
To fix the issue temporarily, please use this filter in the functions.php file.
add_filter("avf_leaflet_maps_params", function($params) {
$params[] = 'tap="false"';
return $params;
}, 10, 1);
We will forward the issue to our channel.
Best regards,
Ismael