Show more on Map View

Home Forums Calendar Products Events Calendar PRO Show more on Map View

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1045422
    dcantato
    Participant

    If I want the map view to show more entries but not have them listed below is that possible?

    Such as currently it has 5 entires listed below and 5 dots on the map. I’d like all the events on the map but not listed below.

    #1045437
    George
    Participant

    Hey @dcantato,

    This configuration is unfortunately not possible at this time in any simple or straightforward way 🙁

    If there are 20 events in the Map, they will show in the list view below it by default.

    The only simple way I can think of for getting around this is to set the “Number of events per page” option on the “General” settings tab to whatever number you’d like. This settings tab is in Events > Settings in your wp-admin.

    Then, you could add custom CSS to hide list view events other than the top 5 items, like this:


    #tribe-geo-results .type-tribe_events {
    display: none;
    }

    #tribe-geo-results .type-tribe_events:nth-child(1),
    #tribe-geo-results .type-tribe_events:nth-child(2),
    #tribe-geo-results .type-tribe_events:nth-child(3),
    #tribe-geo-results .type-tribe_events:nth-child(4),
    #tribe-geo-results .type-tribe_events:nth-child(5) {
    display: inline-block;
    }

    This CSS will hide all of the list view items under the map on Map View; but then selectively only show the first 5 items. Just an example of how you could pull this off…

    I hope this helps!

    Cheers,
    George

    #1045442
    dcantato
    Participant

    That’s a nice possible solution.

    I’ll play around with that and see how load time takes the hit if I chose something like loading 1-200 events on the map.

    #1046020
    Leah
    Member

    Thanks dcantato! I hope that gets you what you’re looking for.

    Cheers,

    Leah

    #1048607
    George
    Participant

    I’ll close up this thread for now, if other issues arise open a new thread any time! 😀

    Cheers,
    George

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Show more on Map View’ is closed to new replies.