Kiran

Forum Replies Created

Viewing 15 posts - 5,641 through 5,655 (of 6,022 total)
  • Author
    Posts
  • in reply to: BETA TESTERS – Invoicing #348352

    Kiran
    Moderator
    Post count: 7069

    Hi Siegmar,

    Currently feature of sending PDF invoices via email is not available. but we have added in our todo, so in future we will add that feature.

    Our aim is to make Invoicing more and more friendly.

    Thank you for your suggestion.

    Thanks,
    Kiran

    in reply to: False redirect after klick my entries #347868

    Kiran
    Moderator
    Post count: 7069

    Hi Giorgio,

    Check now, My entries (my listings) page working fine now.

    You have disabled author archives from Admin -> SEO > Title & Metas > Author archives settings > Author archives.
    Enabling author archives redirect issue gone.

    Thanks,
    Kiran

    in reply to: Neighbourhood widget doesn't show #347825

    Kiran
    Moderator
    Post count: 7069

    Hi,

    Please check, neighbourhood widget issue has been fixed, also tested by creating sample listing.

    Let us know.

    Thanks,
    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi,

    Thanks for letting us know.

    Changes are also included in next release, so don’t worry about future update.

    Till next release if you want to replicate changes on other site then just overwrite file
    wp-contentpluginsgeodirectorygeodirectory_template_actions.php from current site to another site that you want to fix.

    Let me know if you have any query.

    Thanks,
    Kiran

    in reply to: Countrys listet two or more times in Country Translations #347745

    Kiran
    Moderator
    Post count: 7069

    Hi Andreas,

    We need database details to apply patch on your site to fix the issue. Please provide us database server details in private reply.

    Kiran

    in reply to: All custom fields "show in what location" value removed. #347735

    Kiran
    Moderator
    Post count: 7069

    Hi bob,

    I just looked into your site. I run GD Tools after saving for some two fields, and it works fine for me, means it does not lose locations selected. If problem still exists, then please provide details how to re-create problem.

    For second question i created one test listing “GD Test” and for that listing fields are selected & displayed correctly.
    So wee ne FTP & Database credentials to look into more.

    Thanks,
    Kiran

    in reply to: Having some issues with search bar #347731

    Kiran
    Moderator
    Post count: 7069

    Thanks for letting us know.

    Let us know if you have any problem related to our plugins.

    Thanks 🙂


    Kiran
    Moderator
    Post count: 7069

    Hi There,

    You following code snippet to display title on detail page sidebar.

    
    
    // Display title on detail page sidebar.
    function gd_title_on_detail_page_sidebar() {
        if (geodir_is_page('detail') || geodir_is_page('preview')) {
            echo '<div class="geodir-company_info geodir-details-sidebar-title">';
                echo '<div class="wrap gd-title-wrap">';
                    echo get_the_title();
                echo '</div>';
            echo '</div>';
        }
    }
    add_filter( 'geodir_detail_page_sidebar', 'gd_title_on_detail_page_sidebar', -99 );

    Thanks,
    Kiran

    in reply to: Shortcode: gd_listings showing all places #347724

    Kiran
    Moderator
    Post count: 7069

    Hi RussM,

    My current IP Address is 110.172.26.115, but it changing alternatively, most of time the range is 110.172.26.xxx

    If you provide SFTP credentials (username & password) then it will be more helpful.

    Let us know.

    Thanks,
    Kiran

    in reply to: Remove location in search #347721

    Kiran
    Moderator
    Post count: 7069

    Hi There,

    Please check now, neighbourhoods tab back in location switcher menu.

    If you want to place location switcher on sidebar or in header, then just use shortcode [gd_location_tab_switcher]
    See https://wpgeodirectory.com/docs/location-manager-shortcodes/

    Thanks,
    Kiran

    in reply to: Use action or filter to modify listing before save #347714

    Kiran
    Moderator
    Post count: 7069

    Hello Adam,

    ‘geodir_listinginfo_request’ filters the data that need be saved in listing detail table. See desc https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/post_functions.php#L601

    You code shows that you want to filter tags data that saved in detail table. But tags are also a term taxonomy of the listing, so you have to set tags in term taxonomy as well.

    Check following code snippet

    
    
    function gd_override_tags( $listing_info, $post_id ) {
        if ( !isset( $listing_info['post_tags'] ) ) {
            return $listing_info;
        }
        
        $post_tags_array = array( 'my tag', 'my another tag' ); // Your tags here.
        
        $listing_info['post_tags'] = implode( ",", $post_tags_array );
    
        if ($post_id > 0) {
            $tag_taxonomy = get_post_type( $post_id ) . '_tags';
            
            // Set listing tag terms
            wp_set_object_terms( $post_id, $post_tags_array, $tag_taxonomy ); // Ex: $post_tags_array => array('test', 'mytest'), $tag_taxonomy => 'gd_place_tags'
        }
        
        return $listing_info;
    }
    add_filter( 'geodir_listinginfo_request', 'gd_override_tags', 10, 2 );

    Thanks,
    Kiran

    in reply to: traslating the List of fields those appear in advance search #346120

    Kiran
    Moderator
    Post count: 7069

    You can not update only Advance Search plugin.

    Because Advance Search plugin is dependable on GD core, so updating Advance Search only may break plugin functionality.

    Thanks

    in reply to: numbers wrong in the search bar #346061

    Kiran
    Moderator
    Post count: 7069

    Hi,

    I can able to see advance search form on home page. On which page you have seen disappeared the form. Please try again after clearing browser cache.

    For your questions:
    1)
    You can use Price pre-defined field from Predefined Fields. Price field has many options available like thousand separator, decimal separator, currency symbol, price display format etc…

    2)
    Check now range is correctly showing.
    You have to set “Starting Search Range” to 5 & “First Search Range” to 0.

    Thanks,
    Kiran

    in reply to: Shortcode: gd_listings showing all places #346057

    Kiran
    Moderator
    Post count: 7069

    Hi,

    I have checked and found, may be it is because of conflicts with other plugin.
    Please provide FTP details we can look into more.

    FYI many places have “No Categories”, please re-save those listings after choosing categories.

    Thanks,
    Kiran

    in reply to: Having some issues with search bar #346054

    Kiran
    Moderator
    Post count: 7069

    Ok, so you have any settings via pmpro plugins that stops search?

    Let us know, so we can assist you if this is a bug and not because of settings.

    Thanks

Viewing 15 posts - 5,641 through 5,655 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount