Viewing 1 replies (of 1 total)
  • I had the same problem. Google is being more picky on the way their API is called. It’s generated a missing API key error but that doesn’t seem to actually be the problem.

    The fix is easy with a couple edits to the plugin. There are two instances where “//maps.google.com” is used. The “//” needs to be changed to “https://” and then it should work.

    You’ll find them on lines 169 and 193 and the new lines will look like this:

    wp_enqueue_script( 'google-maps-api', 'https://maps.google.com/maps/api/js?sensor=false' );

    $url = add_query_arg( $args, 'https://maps.googleapis.com/maps/api/geocode/json' );

    I’ll report this to the developer.

Viewing 1 replies (of 1 total)
  • The topic ‘Maps Don't Show Up Anymore’ is closed to new replies.