Hi I’ve created dozens of google API keys for numerous different sites, but for some reason the following site is not working.
I have deleted everything, and replied for key following step by step tutorial instructions to no avail.
can you please have a look http://www.etonplace.com.au/#contact
Hey karmenka,
Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.
Best regards,
Rikard
Thanks details privately provided
Hi karmenka,
Maybe there is a limitation on how many keys you can register from one account?
https://developers.google.com/maps/documentation/javascript/usage
https://stackoverflow.com/questions/10533850/multiple-api-keys
Maybe they exceed API usage limits?
If you need further assistance please let us know.
Best regards,
Victoria
I registered API key from the clients own google account, and this is still happening. There is no way this is a usage issue there are no other keys in this account.
Hey!
You had following code in Functions.php file of your child theme
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=AIzaSyAidX34J-pkIHmOUFdVrt05MpzDHz-VZUk', array('jquery'), '3', true);
wp_enqueue_script('avia-google-maps-api');
}
add_action('init', 'ava_googlemaps_apikey');
I removed it and it helped. Please review your website :)
Regards,
Yigit
sorry my bad, didn’t check. thanks.