Kiran

Forum Replies Created

Viewing 15 posts - 5,986 through 6,000 (of 6,022 total)
  • Author
    Posts
  • in reply to: Location switcher and search #233567

    Kiran
    Moderator
    Post count: 7069

    Hi,

    3) This is not a bug, currently the search field ajax autocompleter does not filters the listings for current locations. We can implement if requested by a large portion of the community members.

    For search point please follow this documentation – https://wpgeodirectory.com/docs/core-general/#search

    Let us know.
    Thanks,
    Kiran

    in reply to: Location switcher and search #233312

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Event Add-on Social Importer #233243

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Event Add-on Social Importer #233214

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Confused about Neighbourhood & City Meta/Description #233189

    Kiran
    Moderator
    Post count: 7069

    Hello,

    If no meta title and description for regions then it will use default meta details.

    Thanks

    in reply to: unable to populate dummy data. #233188

    Kiran
    Moderator
    Post count: 7069

    @Akshay,
    Next release will be in the current week or at the start of the next week.

    @Claes-Goran
    Provide your WP admin details in a private reply so we can investigate.

    Thanks

    in reply to: Event Add-on Social Importer #233156

    Kiran
    Moderator
    Post count: 7069

    Hi Jorge,

    Sorry for late reply.
    To clear confusion between timezone & locations, now the event local time will be used in import and to display on site.
    For ex:
    – Event with datetime “28 July at 20:00–01:00 in UTC-04” will be displayed like “July 28, 2016 8:00 pm – July 29, 2016 1:00 am” on the site.
    – Event with datetime “5 June at 22:00–03:00 in EDT” will be displayed like “June 5, 2016 10:00 pm – June 6, 2016 3:00 am” on the site.

    Hope all questions are cleared now. Let us know.

    Thanks

    in reply to: Location switcher and search #233062

    Kiran
    Moderator
    Post count: 7069

    Hi,

    Issue was fixed and also patch was updated on your site.

    Please let us know.

    Thanks,
    Kiran

    in reply to: unable to populate dummy data. #231788

    Kiran
    Moderator
    Post count: 7069

    Hi Akshay,

    The problem “unable to populate dummy data with OpenStreetMap” has been fixed and it will be available in the next release of GeoDirectory core.

    Until next release if you want it to fix on your site, please provide FTP details in a private reply. So we can update patch on your site.

    Thanks,
    Kiran

    in reply to: Event Add-on Social Importer #231774

    Kiran
    Moderator
    Post count: 7069

    Hi,

    No worries about that.
    It will auto adjust datetime conversion during import based on your site timezone settings ( Admin -> Settings -> Timezone ).

    Thanks

    in reply to: Event Add-on Social Importer #231729

    Kiran
    Moderator
    Post count: 7069

    Hi Jorge,

    Your site has timezone settings is UTC+0 and on facebook event has date timezone in UTC-04. During import it converts the datetime from UTC-04 to UTC+0.
    So start datetime 2016-07-28T20:00:00-0400 becomes July 29, 2016 12:00 am and end datetime 2016-07-29T01:00:00-0400 becomes July 29, 2016 5:00 am.

    Please see here time conversion from UTC-04 -> UTC+0.

    For start datetime http://www.timeanddate.com/worldclock/converted.html?iso=20160728T20&p1=3918&p2=0#add-cal
    For end datetime http://www.timeanddate.com/worldclock/converted.html?iso=20160729T01&p1=3918&p2=0#add-cal

    Let me know.

    Thanks,
    Kiran

    in reply to: Address #231657

    Kiran
    Moderator
    Post count: 7069

    Hi Mike,

    Without custom code it can’t turn off the street address field and leave the fields city, state and postal code enabled. But you can hide the street address field for users using custom css.

    
    
    
    #propertyform #geodir_post_address_row {
        display: none !important;
    }
    

    Please add this custom css in Admin -> Geodirectory -> Design -> Scripts -> Custom style css code.

    Thanks,
    Kiran

    in reply to: Confused about Neighbourhood & City Meta/Description #231401

    Kiran
    Moderator
    Post count: 7069

    Hi Craig,

    We have added new option so now Neighborhood Meta and Neighborhood Description also can be managed from Add/Edit Neighborhood page.
    Now Neighborhood Title will be display in titles also and location description will display Neighborhood Description if available.

    Option added to manage meta title & description on neighbourhood pages – ADDED

    This has been added and it will be available in the next release of Location Manager.

    Thanks,
    Kiran

    in reply to: Blank non selectable field drop down #231314

    Kiran
    Moderator
    Post count: 7069

    Hello Dotty,

    You can use following code snippet to get gd_place submit action.

    
    
    
    /**
     * Fires once a post has been saved.
     *
     * @param int     $post_ID Post ID.
     * @param WP_Post $post    Post object.
     * @param bool    $update  Whether this is an existing post being updated or not.
     */
    function geodirectory_submit_gd_place( $post_ID, $post, $update = false ) {    
        if (  !empty( $post->post_author ) && !( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
            $user_id = $post->post_author;
            update_user_meta( $user_id, '_new_user', '0' );
            error_log( 'geodirectory_submit_gd_place() -> user_id : ' . $user_id . ', post_ID : ' . $post_ID );
        }
    }
    add_action( 'save_post_gd_place', 'geodirectory_submit_gd_place', 10, 3 );
    
    

    p.s. feel free to share your valuable feedback with a nice review here anytime : https://wordpress.org/support/view/plugin-reviews/geodirectory
    It really helps us grow more. 🙂

    Thanks,
    Kiran

    in reply to: Blank non selectable field drop down #231227

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
Viewing 15 posts - 5,986 through 6,000 (of 6,022 total)