• Resolved TatumCreative

    (@tatumcreative)


    /* Load any maps */
    if( $('.em-location-map').length > 0 || $('.em-locations-map').length > 0 || $('#em-map').length > 0 ){
    	var script = document.createElement("script");
    	script.type = "text/javascript";
    	script.src = (EM.is_ssl) ? 'https://maps.google.com/maps/api/js?v=3.8&sensor=false&callback=em_maps':'http://maps.google.com/maps/api/js?v=3.4&sensor=false&callback=em_maps';
    	document.body.appendChild(script);
    }

    This is improperly pulling in an external script, and breaks other plugins by generating Javascript errors whenever two Google Map scripts are pulled in at once. Enqueuing scripts does it correctly.

    http://codex.wordpress.org/Function_Reference/wp_enqueue_script

    http://wordpress.org/extend/plugins/events-manager/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    thanks, we will going to check this out.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    unfortunately that still would load two scripts. There’s no official ‘maps’ resource we can all reference, which would make life much easier.

    We only load our script if a map needs to be displayed…. I guess one thing we could do is check if maps is defined already.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Google Maps loaded in incorrectly’ is closed to new replies.