• Resolved stuart20

    (@stuart20)


    After the WordPress update (to version 5.4.1) on 29th April and the update to this plugin to v1.4.4, the search function on the google map no longer works. I tested on a rolled back version of wordpress to 5.4 and also a rolled back version of this plugin to v1.4.3 but the search icon is still not clickable and does not work.

    Is anyone else experiencing this too?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Aurovrata Venet

    (@aurovrata)

    yes, that’s a bug due to recent updates in the plugin. I am releasing v1.4.5 which fixes this.

    Plugin Author Aurovrata Venet

    (@aurovrata)

    fixed in v1.4.5

    Thread Starter stuart20

    (@stuart20)

    Confirmed now working with v1.4.5 -thanks

    motosonico

    (@motosonico)

    thanks a lot, finally its working fine, i have a question, can i change the pin image, and how to disable search box?
    thanks

    Plugin Author Aurovrata Venet

    (@aurovrata)

    thanks a lot, finally its working fine,

    great, do leave a review

    can i change the pin image

    yes you can, using

    add_filter('cf7_google_map_marker_icon_url_path', 'use_custom_map_icon',10,2);
    function use_custom_map_icon($image_url, $field_name){
      if( 'your-location' == $field_name ){
        $image_url = ... //set your image url here.
      }
      return $image_url;
    }

    how to disable search box

    this is a checkbox you enable when you create the map tag in the cf7 form

    motosonico

    (@motosonico)

    thanks @aurovrata

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Search function not working after updates?’ is closed to new replies.