Hello,
This may be fixed in the trunk, I just downloaded the EME plugin today via my WP 3.0.4, great plugin. Problem that was giving me the green screen of death for Google Maps. Line 2298 of eme_events.php had an extra comma. I’ve put in the whole call here just for completeness.
Original:
var infowindow = new google.maps.InfoWindow({
content: ‘<div class=”eme-location-balloon”>‘ + location +’<p>’ + address + ‘</p><p>’ + town + ‘</p></div>’,
});
The comman after </div>’, should be removed:
Fixed:
var infowindow = new google.maps.InfoWindow({
content: ‘<div class=”eme-location-balloon”>‘ + location +’<p>’ + address + ‘</p><p>’ + town + ‘</p></div>’
});
This fixed my green screen when adding locations. I still have an issue wherein the map that displays on the event page is not the map that displays on the location page, it’s just off in the ocean near Africa. I’ll work on fixing that and submit the fix if found. Thanks.