unionco/calendarize

Upcoming not including "started" multi-day events

mikestecker opened this issue · 2 comments

I know upcoming implies not started yet, but I'd like to be able to show events that span multiple days until they end before they drop off, is there a way to do this?

Update: I thought I'd be clever and just backdate a week using .after, however this doesn't work either.

For example:

        {% set order = 'asc' %}
        {% set unique = true %}
        {% set startDate = now|date_modify('-1 week')|date('Y-m-d') %}
        {% set events = craft.calendarize.after(startDate, { section: ['news'], type: 'event' }, order, unique) %}

However, I put in a test event that is All Day, spanned from the day before today and went a number of days. This event wouldn't output unless the start date has not occurred yet. If the start date is prior to the current day/time, then the event simply won't show.

Is there any way to be able to show an event while it is considered "active" on multi-day events?

Thanks!

I just realized this is related to #27