Add Listing Address Field
This topic contains 10 replies, has 4 voices, and was last updated by Kah Sheung Chan 7 years, 11 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket-
AuthorPosts
-
April 25, 2017 at 7:49 am #375194
Hi,
Is it possible to limit the search result to a country in the address entry text field, if search as you type is enabled?
Currently, it seems to be searching the whole world.
April 25, 2017 at 7:57 am #375197Hi there,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below. Meanwhile, could you try adjusting the options here in GD > Advanced Search http://prntscr.com/f0j8x6 .
Thanks!
April 25, 2017 at 9:03 am #375208This reply has been marked as private.April 25, 2017 at 10:04 am #375223Hi there,
Thanks for your reply. I’ve just checked with a developer and he mentioned that this requires customization to achieve what you needed there. In the meantime, you can choose to disable the “Google address autocomplete” using this option as shown in this screenshot http://prntscr.com/f0km3q in GD > Multilocations.
Thanks!
April 25, 2017 at 10:50 am #375235What sort of customization? Parameter changes while passing the query to Google? If you are u can pick me to the file that I need to change and what to change. I can do the rest.
April 25, 2017 at 11:26 am #375243Hi,
In file plugins\geodir_location_manager\geodir_location_hooks_actions.php
FIND (BETWEEN LINES 2848 – 2863):function initialize_autofill_address() { if (typeof google !== 'undefined' && typeof google.maps !== 'undefined') { // Create the autocomplete object, restricting the search // to geographical location types. autocomplete = new google.maps.places.Autocomplete( /** @type {HTMLInputElement} */ (document.getElementById('<?php echo $prefix . 'address'; ?>')), { types: ['geocode'] }); // When the user selects an address from the dropdown, // populate the address fields in the form. google.maps.event.addListener(autocomplete, 'place_changed', function() { fillInAddress(); }); } }
REPLACE IT WITH:
function initialize_autofill_address() { if (typeof google !== 'undefined' && typeof google.maps !== 'undefined') { var options = { types: ['geocode'], componentRestrictions: {country: 'us'} // United States only, specific country restrictions }; autocomplete = new google.maps.places.Autocomplete((document.getElementById('<?php echo $prefix . 'address'; ?>')), options); google.maps.event.addListener(autocomplete, 'place_changed', function() { fillInAddress(); }); } }
Thanks,
KiranApril 25, 2017 at 3:32 pm #375310Hi, Just 1 last question.
After I make this change, if there’s an update to the plugin, this change will be over-written, right?
April 25, 2017 at 3:55 pm #375317I just tried making changes to the code. For some reason it’ll always crash my WordPress every time I click update to save the changes. Even when I’m only adding a comment.
Tried making changes to other non-gd plugins and the changes took without incident. Is it because it’s licensed so I can’t make changes to the codes?
April 25, 2017 at 5:50 pm #375337Hi,
all of our plugins are 100% open source and can be modified just like other plugins. If it’s crashing when saving, it means that there must be something wrong left in it’s code (regardless of what you are trying to add).
Do you have access to an error log to check what error is reporting?
Let us know,
Thanks
April 26, 2017 at 2:12 am #375421Nevermind, I think something wrong with the editor in WP. I downloaded the file, made the change and posted it back in and it worked.
Still, back to my earlier question, does that mean when you come up with an update and I update it, this change will be reset?
April 26, 2017 at 8:50 am #375452Nevermind. Got my answer from another thread which changes the plugin codes.
Case closed.
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket