Support

Account

Home Forums ACF PRO Google maps deletes value on populated data Reply To: Google maps deletes value on populated data

  • The only workaround to fix this is modifying the core of ACF.

    File assets/js/acf-input.js
    Changing this :
    this.$search().val( val.address );
    for this:
    this.$search().val(this.$input.val());

    Is this a bug or am i missing something.