It looks like nothing was found at this location.

(function () { function isMonthView() { return document.body && document.body.className.indexOf('tribe-events-view--month') !== -1; } function goToListView() { if (!isMonthView()) return; var href = window.location.href; if (href.indexOf('tribe_events_display=list') !== -1) return; if (href.indexOf('?') === -1) { window.location.href = href + '?tribe_events_display=list'; } else { window.location.href = href + '&tribe_events_display=list'; } } document.addEventListener('click', function (e) { var el = e.target; while (el && el !== document.body) { if ( el.className && el.className.indexOf('tribe-filter-bar-c-checkbox') !== -1 ) { setTimeout(goToListView, 150); return; } el = el.parentNode; } }); })();