Kiran

Forum Replies Created

Viewing 15 posts - 3,451 through 3,465 (of 6,022 total)
  • Author
    Posts

  • Kiran
    Moderator
    Post count: 7069

    Hello,

    One categories printed by [gd_single_taxonomies] & another category printed by [gd_output_location].
    Either remove [gd_single_taxonomies] or disable categories from detail page sidebar.

    Kiran

    in reply to: Cities for certain cpt+category #457080

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: gd_listing post_author #457077

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Option added in GD Listings shortcode/widget to filter listing by author. It will be in next release.

    Here is patch: https://github.com/AyeCode/geodirectory/pull/523/commits/02b66134f96ca534e0b847bc627099f984a0c170

    current_user – Filters the listings by author id of the logged in user.
    current_author – Filters the listings by author id of current viewing post/listing.
    ID (ex:11): Filters the listings by author id = 11.
    Leave blank to show posts from all authors.

    Kiran

    in reply to: Post has been submitted, preview broken #457076

    Kiran
    Moderator
    Post count: 7069

    Hello,

    When you add a listing it says “Post has been submitted, you need to complete checkout to make it live, you can preview it here”. Can we make it so that the here bit opens a new window? The problem is at the moment when you click here there is no way for the user to go back to actually complete the checkout.

    This has been fixed and it will be in next release of Pricing Manager.

    Kiran

    in reply to: Cities for certain cpt+category #457044

    Kiran
    Moderator
    Post count: 7069

    Hi anders,

    Listing detail page and listing archive page has different url structures. You should click on category from detail page or from breadcrumb(if exists on page) to filter the listings in current listing’s location.

    Kiran

    in reply to: GeoDirectory does not have access to your filesystem #457042

    Kiran
    Moderator
    Post count: 7069

    Hello Eric,

    This happens when it does not have access to WP file system. Please follow instructions given at the link posted by Guust.

    It helped customers in past. See https://wpgeodirectory.com/support/topic/error-geodirectory-clean-install/#post-358652 &
    https://wpgeodirectory.com/support/topic/geodirectory-does-not-have-access-to-your-filesystem-2/#post-430850

    Kiran

    in reply to: Map not displayed on search page and search not working #457017

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: GD Version 1.6.32 update issue #456999

    Kiran
    Moderator
    Post count: 7069

    Hi Kenneth,

    In next version we have added font-awesome setting to prevent conflict between font-awesome v4 & v5. Currently it is on development version and not released yet. If you have staging site then you have upload development version there to confirm.
    If this not works then we will find some solution.

    Let us know.

    Thanks,
    Kiran

    in reply to: Moving event dates – again! #456998

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Apply lower priority to the sorting filter.

    1) Use following filter

    add_filter( 'geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend', 999,  1 ) ;

    instead of

    add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ;

    2) Add following lines in the tab ordering snippet after post_profile lines.

    
    
    if (isset($tab_array['event_schedule'])) {
    	$new_tab_array['event_schedule'] = $tab_array['event_schedule'];
    	$new_tab_array['event_schedule']['is_active_tab']='1';
    	unset($tab_array['event_schedule']);
    }

    I tried this on my tests site and it worked fine.

    Thanks,
    Kiran

    in reply to: email issues for registration and listing claim #456997

    Kiran
    Moderator
    Post count: 7069

    Hello Lise,

    I have tested with one demo user & with demo testing. I successfully received claim listing verification email at my gmail account.
    Please try with another email address.

    Let us know.

    Thanks,
    Kiran

    in reply to: Default Map Center on Home Page with Multi Location #456996

    Kiran
    Moderator
    Post count: 7069

    Hello Susan,

    Map center calculated by Google map bounds function, so all markers covered on the map.

    You can use following code snippet to set own custom map center(Replace MAP_CANVAS_NAME to respective canvas name used).

    
    
    function gd_snippet_map_options_home_map( $args = array() ) { 
        $args['enable_marker_cluster_no_reposition'] = true; 	// Don't reposition after load
    	$args['autozoom'] = false; 								// Disable auto-zoom to set custom map center
    
    	$args['zoom'] = 2;										// Default zoom
    	$args['latitude'] = 48.858372;							// Default latitude
    	$args['longitude'] = 2.294481;							// Default longitude
     
    	return $args;
    }
    add_filter ('geodir_map_options_MAP_CANVAS_NAME', 'gd_snippet_map_options_home_map', 10, 1 ); // Replace MAP_CANVAS_NAME to respective canvas name used. Ex: geodir_map_v3_home_map

    Thanks,
    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hello Derek,

    all thats showing up on the live page is the text: “]

    In location parameter use value without [ & ]. Ex:

    [gd_output_location location="detail"]

    .
    I have corrected and added location=”detail” to show sidebar values.

    I also can’t get the ninja forms to show up in the same way, but the ninja form contact button is blank.

    I shortcode you have used post_contact=1 this requires the listing must have “email” field non-empty. Try post_contact=0 to show contact form even listing has email field empty.

    Thanks,
    Kiran

    in reply to: Can't find feature listing setting in v2 pricing manager #456910

    Kiran
    Moderator
    Post count: 7069

    Hello Derek,

    In v2 we have used custom field to set featured. Only admin have permission to set/unset featured.

    We have added to manage it via package as well. But this will be available in next release of Pricing Manager. So from next release it will set featured listing if package allows it.

    Kiran

    in reply to: Unable to add listings – no listing + no invoice created #456888

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: search by zipcode V2 #456881

    Kiran
    Moderator
    Post count: 7069

    Hello,

    This has been fixed, fix will be available in next release.
    I have updated patch on your site so on your issue is fixed.
    Update following patch if you want to fix on other sites before next release. https://github.com/AyeCode/geodirectory/commit/fbb7a7a635610ca9e9e32c4925270ae84e79d489

    Kiran

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