$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>advanced custom fields - ACF Maps admin error: "For development purposes only" even after supplying api key|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

advanced custom fields - ACF Maps admin error: "For development purposes only" even after supplying api key

matteradmin7PV0评论

This issue is occurring even when I tried registering the key via various actions and filters.

Fails

Method 1:

function my_acf_init() {

  acf_update_setting('google_api_key', 'xxx');
}
add_action('acf/init', 'my_acf_init');

Method 2:

function my_acf_google_map_api( $api ){

  $api['key'] = 'xxx';

  return $api;

}

add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');

Is there an extra step needed to ensure the map api key is included in the enqueued google map script on the admin side of WordPress?

Edit: THIS KEY WORKS FOR THE MAPS ON THE FRONT END OF THE WEBSITE

This issue is occurring even when I tried registering the key via various actions and filters.

Fails

Method 1:

function my_acf_init() {

  acf_update_setting('google_api_key', 'xxx');
}
add_action('acf/init', 'my_acf_init');

Method 2:

function my_acf_google_map_api( $api ){

  $api['key'] = 'xxx';

  return $api;

}

add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');

Is there an extra step needed to ensure the map api key is included in the enqueued google map script on the admin side of WordPress?

Edit: THIS KEY WORKS FOR THE MAPS ON THE FRONT END OF THE WEBSITE

Share Improve this question edited Nov 19, 2018 at 22:39 wrestlingissodumb asked Nov 19, 2018 at 6:02 wrestlingissodumbwrestlingissodumb 111 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

Maybe you have not entered payment information to your Google Developer Account. While you get 200$ of API Calls "for free", you have to enter payment information to your developer Account for when you go over these "free" API Calls.

Post a comment

comment list (0)

  1. No comments so far