Raza Khadim
Forum Replies Created
-
It suggest the addresses from Google Maps, if Google Maps doesn’t have the apartment number then this plugin will not show the apartment number. Check the address by opening Google Maps and see if it returns the apartment number.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Elementor Pro issue and a fix@justt2552 the error about Google Maps API shouldn’t impact the functionality.
However, regarding the issue you are seeing, I will need to see the website (plugin activated) to see what could be causing it. If you can’t share the website link then another common issue is adding the right field ID.
Note that if forms are duplicated then Elementor will carry on the same field IDs in the duplicated form. As a requirement and general good practice is to have a unique ID for elements.
If you are copying the Field IDs from the Form widget in Elementor then it will not work because Elementor adds a prefix usually “form-field” before the ID when the page is published. Thus, you have to open the page right-click on the field you want the address auto-complete on and then get the ID from there. See this for help: https://saa.khadim.nz/kb/how-to-find-the-field-id
Also, if you have duplicate field IDs it will not. Again, field IDs must be unique.I have not tested the plugin with Elementor Popups yet. I will test and get back to you on this.
I hope this helps, let me know if there’s something else.
Thanks
Forum: Plugins
In reply to: [Staatic - Static Site Generator] Publish changes only (Paid Staatic)@staatic thank you. Looking forward to the updates.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Not Working for FormilatorThe address you provided is returning Netherlands not Germany. If you want to select multiple countries use CTRL + Click (on Mac use CMD + Click). See this for help: https://saa.khadim.nz/kb/how-to-limit-search-to-one-country
If you want to use the Restriction Type then you must enter Coordinates of the areas you want to search to be biased or restricted to. See this for help: https://saa.khadim.nz/kb/how-to-get-coordinates
Forum: Plugins
In reply to: [Simple Address Autocomplete] Not Working for Formilator@olahferenc27 mate, you are doing it wrong. Every single entry (except for the homepage) you have entered in the URLs is WRONG.
All you need to do is enter the ones I have provided above and DO NOT add them in 1, add them separately.
Your list should look like this.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Not Working for FormilatorYou are getting the following error:
The current URL loading the Maps JavaScript API has not been added to the list of allowed referrers. Please check the referrer settings of your API key in the Cloud Console.
I don’t think you have added the URLs to the list. Follow the following instructions and add the following URLs to the Referrer list under Website Restrictions.
newtransfer.hu
newtransfer.hu/*
*.newtransfer.hu
*.newtransfer.hu/*Follow these instructions: https://saa.khadim.nz/kb/how-to-get-google-maps-api-key#optional-settings
Forum: Plugins
In reply to: [Simple Address Autocomplete] Not Working for FormilatorThis API key is not authorized to use this service or API. Please check the API restrictions settings of your API key in the Google Cloud Console to ensure that all of the APIs and services you need to use are correctly specified in the list of enabled APIs.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Not Working for Formilator@olahferenc27 the plugin is working fine, however, your APIs are not enabled properly. Make sure you enable Maps Javascript API and Places API.
See this for help: https://saa.khadim.nz/kb/how-to-get-google-maps-api-key
Forum: Plugins
In reply to: [Simple Address Autocomplete] Not Working for Formilator@olahferenc27 you must assign an ID to contact form 7 fields. CF7 doesn’t automatically assign an ID so you have to do it manually. See this: https://saa.khadim.nz/kb/how-to-add-address-autocomplete-to-contact-form-7
Forum: Plugins
In reply to: [Simple Address Autocomplete] problem plugin@sterndata mate, I was trying to help not trigger your paranoia. But thanks, I will keep that in mind.
@sokar87 can you please send the link to the page where you have activated the plugin and maybe a screenshot of the settings page. I will see what I can do from that.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Only display city and country.@digitalimages, it does display the town/city. For instance, search for “Wanaka, New Zealand” only instead of a full street address. However, you will not be able to ONLY show the city at the moment and disable the street address search. A good suggestion though will look into it to add in future updates.
thanks
Forum: Plugins
In reply to: [WP Search with Algolia] Record size chuckingThanks for getting back to me Michael. Seems like I could get rid of half of the data pushed to Algolia with each post. So the plugin indexes the ‘taxonomies’ which is what I need, in the Algolia dashboard I see there is another attribute ‘taxonomies_hierarchical’ which doubles up the size and the same taxonomies show up.
and
would I be able to get rid of ‘taxonomies_hierarchical’? If yes, could you please provide some help on how to do it?
Thanks
- This reply was modified 1 year, 4 months ago by Raza Khadim.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Admin post edit form@mariobeach hope this was resolved. I am going to close it for now but if there are any issues let me know. Thanks
Forum: Plugins
In reply to: [Simple Address Autocomplete] JS Console errors@groggy72 glad that it is sorted now. Please do let me know if there is anything else.
Forum: Plugins
In reply to: [Simple Address Autocomplete] Admin post edit form@mariobeach not really aimed for ACF but it should work. You will have to localize the script as well. Add this to your functions.php or through code snippet plugin:
function enqueue_simple_address_autocomplete() { // Enqueue the necessary scripts for Simple Address Autocomplete wp_enqueue_script('simple_address_autocomplete_js_scripts', plugins_url('simple-address-autocomplete/public/js/simple-address-autocomplete-public.js')); wp_localize_script('simple_address_autocomplete_js_scripts', 'simple_address_autocomplete_settings_vars', array( 'simple_address_autocomplete_google_maps_api' => get_option('simple_aa_options_google_maps_api_key'), 'simple_address_autocomplete_country_selected' => get_option('simple_aa_options_country', 'option'), 'simple_address_autocomplete_form_field_ids' => get_option('simple_aa_options_field_ids'), 'simple_address_autocomplete_bias_coordinates' => get_option('simple_aa_options_bias_coordinates'), 'simple_address_autocomplete_restriction_type' => get_option('simple_aa_options_restriction_type'), )); } add_action('admin_enqueue_scripts', 'enqueue_simple_address_autocomplete');
Also, when testing I noticed a bit of lag with ACF fields. Maybe couple of clicks but did work. Maybe the site I tested is slow or ACF when working with this plugin.
I hope this helps, let me know if there are any further issues.Thanks