Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter matthwm

    (@matthwm)

    Is there a way to show all events on the calendar, even those that have past? https://stillpointcsd.org/events-calendar/

    Plugin Author dFactory

    (@dfactory)

    Yes, just modify the parameters for the calendar query with a filter hook:

    function df_em_get_full_calendar_events_args($args) {
    	$args['event_show_past_events'] =  true;
    	return $args;
    }
    add_filter('em_get_full_calendar_events_args', 'df_em_get_full_calendar_events_args');
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘not showing today's events’ is closed to new replies.