• Is there a way to show only events of the current day? I have the grouping set as ‘day.’ Choosing to display only one day, I would still need to specify the amount of events, otherwise it won’t show any. If I enter a number greater than there are for the current day, it will display the next day(s) events. On the other hand, if I specify a number smaller than the number of events, it won’t include them all for that particular day.
    Thanks in advance!

    http://wordpress.org/extend/plugins/amr-ical-events-list/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Dear Polyfade,

    It lists the next 24 hours, For example:

    Start date: 8 May 15:01; End date: 9 May 15:01

    So yes, it may show some into the next day, and as the day goes by, will show more. Otherwise after the end of the last event on a given day, nothing would show up until 00:00:01 the next morning!

    What you could do for now is use css to hide the next day’s rows. The today rows have a class of “today” and the future ones have a class of “future”. EG:

    tr.future {
    display:none;
    }

    Would you mind explaining how/why you specifically only want one day to show? If it sounds like something that other people might want, then perhaps in a future version, we could do something like offer “hours=xxx” as an alternative to “days=xxx”, and change the meaning of the days to end cleanly on a day?

    what do you think?

    I happen to be needing the exact same functionality. I want to display the day’s events in the context of a multi day event, because I want a separate calendar for each day. Being able to limit this so events starting after midnight wouldn’t show up would be perfect.

    In the meantime, I’ll try this work around. Thanks!

    Dear Polyfade and Jaguwar,

    a version 2.9 will be going up soon, which may help you.

    In the short code, using days=1 will now do a clean day starting from the beginning of the day.

    For 24 Hours from now, use hours=24.

    Jaguwar, I am not sure if I have fully understood your “in context of multi day event” and would be interested in seeing the end result when you are done.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: AmR iCal Events List] List only current day events’ is closed to new replies.