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
  • Author
    Posts
  • #375194

    Kah Sheung Chan
    Expired Member
    Post count: 27

    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.

    #375197

    Kor
    Moderator
    Post count: 16516

    Hi 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!

    #375208

    Kah Sheung Chan
    Expired Member
    Post count: 27
    This reply has been marked as private.
    #375223

    Kor
    Moderator
    Post count: 16516

    Hi 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!

    #375235

    Kah Sheung Chan
    Expired Member
    Post count: 27

    What 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.

    #375243

    Kiran
    Moderator
    Post count: 7069

    Hi,

    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,
    Kiran

    #375310

    Kah Sheung Chan
    Expired Member
    Post count: 27

    Hi, Just 1 last question.

    After I make this change, if there’s an update to the plugin, this change will be over-written, right?

    #375317

    Kah Sheung Chan
    Expired Member
    Post count: 27

    I 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?

    #375337

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    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

    #375421

    Kah Sheung Chan
    Expired Member
    Post count: 27

    Nevermind, 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?

    #375452

    Kah Sheung Chan
    Expired Member
    Post count: 27

    Nevermind. Got my answer from another thread which changes the plugin codes.

    Case closed.

Viewing 11 posts - 1 through 11 (of 11 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount