Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    If you have set up billing, but keep seeing that error, then you will have to contact Google Billing support.

    Do make sure billing is also enabled for the project you created the API keys in itself.

    Plugin Author Tijmen Smit

    (@tijmensmit)

    I missed part of your question.

    Not sure why it fails to save the key, but you can overwrite this issue by adding the code below to the functions.php inside your active theme folder. Replace ‘your browser key’ with your browser key.

    
    add_filter( 'wpsl_gmap_api_params', 'custom_gmap_api_params' );
    
    function custom_gmap_api_params( $api_params ) {
    
        $api_params = $api_params .'&key=your browser key';
    
        return $api_params;
    }
    

    If this works, and the billing is set up correctly, then the quota error should be gone.

    • This reply was modified 6 years, 3 months ago by Tijmen Smit.
    Thread Starter sybrenjanssen

    (@sybrenjanssen)

    Hi Tijmen,

    Your latest solution did the trick. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Browser API Key not saved’ is closed to new replies.