Tagged: GOOGLE MAP ERROR
-
AuthorPosts
-
August 15, 2016 at 5:35 pm #672812
Hey guys,
The full width map function is not working for me. I keep getting this error:
Oops! Something went wrong.
This page didn’t load Google Maps correctly. See the JavaScript console for technical details.I have tried many different address formats and everything in the backend seems fine and will fetch coordinates. Any ideas here. Website address posted below….
August 15, 2016 at 7:40 pm #672848Hi hylandgraphics!
Please make sure you follow the documentation from the Theme Options page, regarding the maps and let us know if that works out for you.
Thanks a lot
Regards,
BasilisAugust 15, 2016 at 8:01 pm #672854Hi,
I have the exact same problem now. Everything was working perfectly fine since always. It is now showing this on my fullwidth map: http://dns.d.pr/1jnpa/5suwaN9m
My website is in private.
I tried in Safari, Chrome and Firefox. The map temporarily opens (some milliseconds) and then the error shows up.
Can this be something related with our recent implementation of CDN? It’s the only thing we changed recently.
August 15, 2016 at 8:34 pm #672864Hi:
I would like to add my 2 cents.
I added a full width Google Map Media Element to this page, but it is blank. http://sunshinephoenix.com/testing
How do you even enter an address? It has “street address”, “city” and “country”, and there are no longitude/latitude settings after Fetch Coordinates is clicked. Please advise. Please note that I was able to embed an IFrame Google Map link manually, which worked.
FYI, I have a Google Map API inserted in the Theme Options, an Event Calendar plugin, and a Google API plugin.
Thanks, Ned
August 15, 2016 at 8:43 pm #672867Having the same exact issue as sitesme. I’ve used this before so I know how it works. It simply just isn’t working?
August 15, 2016 at 10:55 pm #672900Hi:
An improvement to report!
I added the Google API workaround to the functions.php file in my child theme, and for the most part, all of my maps (previously not working) are appearing.
However, the full page map using the Google Map media element is still not right. I am now able to input an address, but it seemed to put me in the ocean in an unknown location, nowhere near the address in California, even though the latitude and longitude appear to be correct.
Recommendations?
Thanks, Ned
August 15, 2016 at 11:33 pm #672905Hi again:
My error — I had the zoom set too high. Seems to be working now…
This was the key to get it to work:
function ava_googlemaps_apikey() {
$prefix = is_ssl() ? “https” : “http”;
wp_deregister_script(‘avia-google-maps-api’);
wp_register_script( ‘avia-google-maps-api’, $prefix.’://maps.google.com/maps/api/js?key=MyAPI Key’, array(‘jquery’), ‘3’, true);
wp_enqueue_script(‘avia-google-maps-api’);
}
add_action(‘init’, ‘ava_googlemaps_apikey’);Thanks, Ned
August 16, 2016 at 7:28 am #673027Just realised there are dozens of users with the same problem.
I fixed mine following these instructions in just 3 minutes: http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/
August 16, 2016 at 4:17 pm #673325Tutorial worked great but still some issues
- This reply was modified 8 years, 2 months ago by hylandgraphics.
August 16, 2016 at 4:23 pm #673332I did follow the documentation and it now works but it does NOT show the address/other info like phone number or have the ability to get directions directly from that map like on other google maps. I know there is a tooltip area but is there CSS that will make that active and not just basic test info? Any suggestions on how to accomplish this?
- This reply was modified 8 years, 2 months ago by hylandgraphics.
August 16, 2016 at 5:55 pm #673356Hey Hyland:
I was going to respond to your post about the Function I wrote about above. FYI, it’s not a CSS snippet, but should go in your functions.php file in a Child Theme.
Rgds, Ned
August 16, 2016 at 6:31 pm #673361Same here, full width map doesn’t work.
Latest version of Enfold: 3.7.1
Created a Google API Maps API key following the instructions:Tried every possible tweaks on the forum. It simply doesn’t work!
August 16, 2016 at 6:38 pm #673366I followed the instructions from my wordpress Enfold dashboard. There is a link to the google instructions.
The “Accept requests from these HTTP referrers (websites) (Optional) setting is confusing. What does it actually mean in plain english?
I entered my website address as in the example but the error still happened on my site. Removing my sites URL from this field works, but I’m still interest to know exactly how this bit works.H
August 16, 2016 at 7:09 pm #673374I can’t get the google maps to work. I followed the instructions and got my API key, still doesn’t work. The map flashes for a split second, then goes away and I get
Oops! Something went wrong.
This page didn’t load Google Maps correctly. See the JavaScript console for technical details.Doesn’t work in the footer widget either.
August 16, 2016 at 10:09 pm #673405Hmm. I have created and entered Google Map APIs for two different websites, but only one of them is fixed. The other flashes the map and then displays the greyed out error message: Oops! Something went wrong. This page didn’t load Google Maps correctly. See the JavaScript console for technical details.
Both websites are running the most up-to-date versions of WordPress, Enfold and every Plugin.August 17, 2016 at 5:27 pm #673809Additional Info: I deleted the full width Google Map from my website, and attempted to replace it.
When I try to enter the address and fetch coordinates, nothing happens. (see attached)
August 17, 2016 at 6:01 pm #673824Hey Design Guy:
I was suffering with all of the ailments mentioned throughout this thread (Google Map Footer Widget, Google Map full width, Google maps on an Event plugin; nothing functioned). FYI, I have followed the model on the Google API Credentials, added an additional Google API plugin in WP, and completed the Google theme option on Enfold.
My solution was to add the following code to the functions.php file of my child theme (can’t say enough about the importance of using a child theme). You have to substitute YOUR API where indicated in the code:
function ava_googlemaps_apikey() {
$prefix = is_ssl() ? “https” : “http”;
wp_deregister_script(‘avia-google-maps-api’);
wp_register_script( ‘avia-google-maps-api’, $prefix.’://maps.google.com/maps/api/js?key=MyAPI Key’, array(‘jquery’), ‘3’, true);
wp_enqueue_script(‘avia-google-maps-api’);
}
add_action(‘init’, ‘ava_googlemaps_apikey’);After I did this, EVERYTHING worked fine. Hope this helps!
Rgds, Ned
August 17, 2016 at 7:18 pm #673839Hey, i have same problems.
But i dont want modify 10 Enfold themes manually and i dont want install extra plugins. I prefer a solution from kriesi with a fast update.BR
Seolotsen
PS: With new 3.7.1, replaced map, updated page and new created map, than it#s running now. Api is without URL created.
Cheers.
- This reply was modified 8 years, 2 months ago by Hokuspokus.
August 19, 2016 at 10:53 am #674658@nedalpert
Thanks a lot for this workaround and glad that this is working for you.We’ll notify Kriesi about this issue and hopefully he can implement a fix for it asap.
Best regards,
AndyAugust 19, 2016 at 12:53 pm #674732@tmjake
I can’t reproduce the issue on my end. It’s working for for me, as you can see here:
So I guess there are some corrupted files on your end, so please delete all theme files completely via FTP, before installing a fresh copy from your themeforest account: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/
@designguy2006
I checked both links (working) and (not working), but it’s working on both for me. Could you fix the issue?Please try to delete your current Google Maps element, then update your page. Afterwards rebuild your Google Maps element and check again.
Cheers!
AndyAugust 19, 2016 at 4:47 pm #674819Hey Andy,
Thank you for your reply.
I replaced the Google Map with a static map image on my (not working) link, because the problem never corrected and I am reviewing with my client.
I have been trying to add a Google Map to a google map test page, but it will not allow me to add an address.
The Enter Address, then fetch coordinates button is not functioning.
I’ve tried multiple addresses, including the same addresses I’ve used on other sites.
Hoping for a quick update to fix.
Thank you,Stephen
- This reply was modified 8 years, 2 months ago by designguy2006.
August 19, 2016 at 5:42 pm #674833Mods, do you have an answer for my question above? Never heard back?
“I did follow the documentation and it now works but it does NOT have the ability to get directions directly from that map like on other google maps. I know there is a tooltip area but is there CSS that will make that active and not just basic test info? Any suggestions on how to accomplish this?”
August 19, 2016 at 7:12 pm #674845Andy,
I deleted all theme files via FTP, I then installed via FTP a new copy of Enfold. This didn’t work. So I deleted the Enfold Theme again via FTP as well as all the other Twenty Sixteen, etc. themes. Then I reinstalled a fresh downloaded version from Themeforest. Again this didn’t work. It was working fine prior to updating to the latest version. I have also tried uninstalling all plug-ins, this didn’t fix the issue either. Any more thoughts? Other than trying to install an older version?
August 19, 2016 at 7:48 pm #674854When looking at the JavaScript Console, it seems it doesn’t want to use my API key. I get the error message “missing-key-map-error, and no-api-keys. But I have the API Key in and I have tried creating several different API keys. Is there one thing imparticular I need to replace or update in the Enfold theme folder? Maybe the JS folder?
Maybe it is something with the download from Themeforest.com? Is there somewhere else I can download the files?
- This reply was modified 8 years, 2 months ago by tmjake.
August 19, 2016 at 11:57 pm #674896Deleted. Problem solved by myself.
- This reply was modified 8 years, 2 months ago by lebenspraxis.
August 20, 2016 at 8:29 pm #675081Hallo Lebenpraxis,
haben Sie 3.7.1 installiert? Bei mir war noch 3.7 hinterlegt. Wenn Sie die alte Google Maps löschen, bitte machen Sie ein Seitenupdate, also die Seite nochmal speichern, nicht nur das Feld. Dann nochmal das neue Element einfügen. Bei mir funktioniert es auch nur, wenn ich in der Google-Api keine URL eintrage. bitte auch schauen, ob Sie Cache-Plugins benutzen. Dann bitte nochmal die Seite anschauen und mittels F5 nochmal laden.Cheers
Seolotsen
August 21, 2016 at 1:50 pm #675331Deleted. Problem solved by myself.
- This reply was modified 8 years, 2 months ago by lebenspraxis.
August 21, 2016 at 2:01 pm #675332Deleted. Problem solved by myself.
- This reply was modified 8 years, 2 months ago by lebenspraxis.
August 21, 2016 at 4:36 pm #675372Deleted. Problem solved by myself.
- This reply was modified 8 years, 2 months ago by lebenspraxis.
August 22, 2016 at 2:37 pm #675758This threads becomes too confusing, as too many different people are posting here and even in different languages. Please open your own ticket for your problem and always provide us precise links showing the issue, as well as admin access.
@designguy2006
Can you provide us admin access please? are we allowed to deactivate all your plugins?
@tmjake
It’s weird, cause it shows up for a moment, then it disappears again. So it seems to me that it gets blocked after it gets loaded correctly. Please ask your host if they are blocking it on their end somehow.Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.