Hi there,
Thank you for getting in touch with us, we do appreciate your time.
I have taken a look at your site and it appears that you have some custom CSS code related to making your infowindow clickable so that it redirects to the marker’s link. I however cannot find any custom JS code related to this which may be the cause this.
With that said, could you please save the below custom JS code into the “Custom JS” setting block (Maps -> Settings -> Custom JS):
jQuery(function($){
$(document).on('click', '.wpgmza-infowindow .wpgmza-infowindow-style-thin-column-right', function(event){
let infowindow = $(event.currentTarget);
let link = infowindow.find('a.wpgmza_infowindow_link');
if(link.length > 0){
window.location.href = link.attr('href');
}
})
})
Once done, please may you clear your browser cache and confirm if this helps?
Kindest Regards,
Matthew