Support

Account

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

  • I found for the backend maps to work you will need the 5.4 beta version and the filter in functions.php

    function my_acf_init() {
    	acf_update_setting('google_api_key', 'your_api_key');
    }
    
    add_action('acf/init', 'my_acf_init');