• Two problems we are having in list view:

    1- List view does not show any events past the end of the year. Nov-May
    I have it set up to show 12 months in settings; Is there another setting or way to show all events in list view, even if they span over a new year?

    2- List view “Previous” & “next” buttons. IS there a way to hide these buttons in CSS, but only in list view, (they would be present in grid view)

    thank you!

    https://www.ads-software.com/plugins/my-calendar/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    Can you provide a link I can look at?

    Regarding hiding the previous/next buttons: yes. The calendar container div always has a class reflecting the current viewing mode, e.g. .calendar, .list, etc. so you can hide them conditionally based on that.

    Thread Starter jomo5280

    (@jomo5280)

    thanks for the quick response!!! – I got it to show all dates – i just had to flush the cache a few times… my mistake.

    as far as hiding the nav buttons, i assume this would work:

    .my-calendar-nav, .list {
    display: none !Important;
    }

    Plugin Author Joe Dolson

    (@joedolson)

    I think you’d want:

    .list .my-calendar-nav {
        display: none;
    }

    The important declaration should be necessary, but what you’ve written will hide .my-calendar-nav and .list; what you want is to hide .my-calendar-nav when it’s inside .list.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Default List view – Not showing next year's events’ is closed to new replies.