You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
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?The text was updated successfully, but these errors were encountered: