I have edited the address in the S5 Map It With Google module but it continues to tell me "Oops! Something went wrong. This page didn't load Google Maps correctly." Am I missing something, or is the address pulled from a different location?
EDIT: I realize the map isn't showing up because Google now requires a Maps API Key for anything activated after June 22nd, 2016. I now have an API Key, where would I need to put that so the map would function properly? I didn't see anything in the plugins that looked correct.
EDIT #2:
I figured it out. I just had to place a script into the index.php with my API Key to get it working again. Here's what I did if anyone else has the same issue.
1) Get a Maps API Key for your site from Google:
https://developers.google.com/maps/documentation/javascript/get-api-key2) Add this script into the body of your index.php (replace the YOUR_API_KEY_HERE with the key you got in step 1):
<script async defer
src="
https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY_HERE&callback=initMap">
</script>
3) All done, enjoy the map.
- Andrew