Hi Courtney,
Thanks for following up on this! I can see the filters are not collapsed on mobile because the calendar only haves one view enabled (map view). If you are planning to enable more views, just ignore this and when add them the filters will collapse automatically. If you are planning to stay with this set up, just paste this code into your functions.php file -located at wp-content/themes/your_theme/– or if you have a custom javascript file in your theme just add the js code there:
function tribe_collapse_filters() { ?>
<script type="text/javascript">
jQuery(document).ready(function (){
if ( jQuery('#tribe-events-bar').length ) {
jQuery('#tribe-bar-collapse-toggle').addClass('tribe-bar-filters-open');
jQuery('.tribe-bar-filters').hide();
}
});
</script>
<?php
}
add_action('wp_head', 'tribe_collapse_filters');
Please let me know if this does the trick for you,
Best,
Nico