• Resolved beh333

    (@beh333)


    Hi and thanks for this very useful plugin. I would now like to use the ACF Google Map field type and then search for city (and street?) names, but it does not seem to work. I guess I could create a new field “city” that I automatically update based on the Google Map field. Do you have any better recommendations? Thank you! Bruce

Viewing 1 replies (of 1 total)
  • Plugin Author Mateusz Gbiorczyk

    (@mateuszgbiorczyk)

    Hello @beh333,

    Thanks for your message.

    Add the following code in the functions.php file in your theme directory:

    add_filter( 'acfbs_options_fields', function ( array $fields ): array {
        $fields['google_map'] = 'Google Map';
        return $fields;
    } );

    This code will add support for a field of the type Google Map. If you select them in the plugin settings, everything will work fine.

    Best,
    Mateusz

Viewing 1 replies (of 1 total)
  • The topic ‘how to search for address’ is closed to new replies.