Default CPT for maps not showing

This topic contains 9 replies, has 4 voices, and was last updated by  bren 5 years, 2 months ago.

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

Open Support Ticket

Tagged: ,

  • Author
    Posts
  • #474586

    bren
    Expired Member
    Post count: 5

    I recently converted from V1 to V2 and an issue that popped up in one of the later updates to V1 has persisted after this conversion.

    On the main directory map on my front page and the archive page map, the default post type doesn’t show if it’s set to the original gd_places (which I’ve changed to Courses on my site). If I click on another post type and then back to that original one, the map markers will show, although the map doesn’t auto-zoom like it does for the other post types, showing all markers on the map.

    I have tried setting the default post type to the other ones available (Clubs and Shops) and it does show them as the default that way. Except that gd_places/Courses still doesn’t auto-zoom like the others when selected.

    Secondly, a related issue appeared after the conversion. I cannot get rid of the gd_event CPT. It shows up on the map and I need it removed from there. I have no GD events, event tags, or event categories and I cannot delete that post type. I have deactivated and deleted the GD Events plugin. And still it remains. (I am using a separate Event plugin for that purpose.)

    I can provide login info in a private reply.

    #474588

    bren
    Expired Member
    Post count: 5
    This reply has been marked as private.
    #474849

    Kor
    Moderator
    Post count: 16516

    Hi Bren,

    Thanks for your post. We have already forwarded this topic to a developer and he will look this asap!

    Thanks

    #474851

    Alex Rollin
    Moderator
    Post count: 27815

    Hi Bren,

    it would really help if you could also share FTP so we can debug further. Please write back with all this info so we can find a solution for you.

    WordPress Administrator Account Credentials
    WP Admin Login URL:
    Username:
    Password:

    SFTP / FTP Credentials
    Host URL:
    Port:
    Username:
    Password:

    #474918

    bren
    Expired Member
    Post count: 5
    This reply has been marked as private.
    #474942

    bren
    Expired Member
    Post count: 5

    I just noticed another problem that might be related. No new Place/Courses are showing up on the map. The 25 or so that are on there are from BEFORE the conversion. I have added about 30 more AFTER the conversion. These show up as listings elsewhere on the site, but are not showing on the map.

    New listings for the other post types (Clubs and Shops) do show up on the map just fine.

    I have exported the Place/Courses to look at the CSV. I compared the old and new listings to see if there was any field that was missing from the new and that isn’t the case.

    #475058

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    #475061

    bren
    Expired Member
    Post count: 5
    This reply has been marked as private.
    #475069

    Kiran
    Moderator
    Post count: 7069

    Hello Bren,

    On the main directory map on my front page and the archive page map, the default post type doesn’t show if it’s set to the original gd_places (which I’ve changed to Courses on my site). If I click on another post type and then back to that original one, the map markers will show, although the map doesn’t auto-zoom like it does for the other post types, showing all markers on the map.

    I have fixed this. There was a one listing “WARP” which has incorrect value for latitude(it has incorrect character). I have fixed it by re-saving that listing.

    I cannot get rid of the gd_event CPT. It shows up on the map and I need it removed from there. I have no GD events, event tags, or event categories and I cannot delete that post type. I have deactivated and deleted the GD Events plugin. And still it remains.

    In v2 we are enhancing displaying post type & markers. In next release there will be option in map widget/shortcode to hide CPT on map.

    Till next release you can hide a CPT from map via hook. Use following snippet to hide event CPT from map.

    
    
    /**
     * Remove map post types.
     */
    function gd_snippet_190318( $post_types = array() ) {
    	if ( isset( $post_types['gd_event'] ) ) {
    		unset( $post_types['gd_event'] );
    	}
    
    	return $post_types;
    }
    add_filter( 'geodir_map_post_types', 'gd_snippet_190318', 10, 1 );

    I just noticed another problem that might be related. No new Place/Courses are showing up on the map. The 25 or so that are on there are from BEFORE the conversion. I have added about 30 more AFTER the conversion. These show up as listings elsewhere on the site, but are not showing on the map.

    I have checked you have 48 Place/Courses listings. I see all 48 listings on map. Please provide page link where you find missing markers for some listings.

    Best Regards,
    Kiran

    #475159

    bren
    Expired Member
    Post count: 5

    Everything is working wonderfully now. Thank you so much.

    All markers are on the map now. It appears that every listing I did AFTER that WARP one were the ones missing. So fixing that one listing, solved that whole problem.

    There was another issue of the map not working on the Central Places category (/courses/category/central), when all of the rest of the categories worked fine. The WARP course was in that category, so that’s what was causing that problem. Just so you know that is also related. That is now fixed.

    All that from an odd character in the latitude! I will certainly be more careful about pasting those in. Thank you again for all your help.

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

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

Open Support Ticket