Home › Forums › Backend Issues (wp-admin) › Google Maps field needs setting to add API key › Reply To: Google Maps field needs setting to add API key
This is what I did and worked for me.
Go to the mentioned path in your plugin folder: advanced-custom-fields\core\fields
Inside the fields folder you will find google-map.php
At around line number 291 you will find a function
`function input_admin_footer() {
// vars
$api = array(
‘libraries’ => ‘places’,
‘key’ => ”,
‘client’ => ”
);
……..
}`
Add your api key to the ‘key’ for example:
function input_admin_footer() {
// vars
$api = array(
'libraries' => 'places',
'key' => 'your google map api key here',
'client' => ''
);
........
}
Get your api key here:
https://developers.google.com/maps/documentation/javascript/get-api-key
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.