• Hi,
    I found one (in some cases critical) issue: you forgot to add “;” in the following code part:

    var map_options = {
        zoom: <?php echo esc_attr( $atts['zoom'] ) ?>,
        center: location,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    It leads to IE and js-minification errors!

    Should be:

    var map_options = {
        zoom: <?php echo esc_attr( $atts['zoom'] ) ?>,
        center: location,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    https://wordpress.org/plugins/wp-google-maps-shortcode/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘JavaScript bug’ is closed to new replies.