We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As discussed here: http://wp-event-organiser.com/forums/topic/day-archive-not-showing-events-spanning-several-days/#post-3371
From ahto on the forums:
But if you consider my example one more time, that is not how it actually works at the moment. The event is scheduled to occur later today. It highlights todays date in the calendar widget. I click on that date — the date that event starts on — and the list is empty. It does not show an event starting on that day if the event crosses over to the days after. It only shows the event if it also ends on the same day.
But if you consider my example one more time, that is not how it actually works at the moment.
It does not show an event starting on that day if the event crosses over to the days after. It only shows the event if it also ends on the same day.
It appears this bug affect would month & year archives too. The fix is to change https://github.com/stephenharris/Event-Organiser/blob/1.7/includes/event-organiser-archives.php#L83 to
$query->set('event_end_before', $ondate_end);
Also discussed changing it so the archives list 'running events', i.e.:
$query->set('event_start_before', $ondate_end ); $query->set('event_end_after', $ondate_start );
The text was updated successfully, but these errors were encountered:
c9975f8
No branches or pull requests
As discussed here: http://wp-event-organiser.com/forums/topic/day-archive-not-showing-events-spanning-several-days/#post-3371
From ahto on the forums:
It appears this bug affect would month & year archives too. The fix is to change https://github.com/stephenharris/Event-Organiser/blob/1.7/includes/event-organiser-archives.php#L83 to
Also discussed changing it so the archives list 'running events', i.e.:
The text was updated successfully, but these errors were encountered: