Hi there @fifteen15studios,
Thanks for reaching out on this, I’ll help you out getting this done. I must say this might not be a good idea as filters on mobile take over the screen, but I’ll leave that to you π
To prevent the filters to collapse on resize just add this lines to your functions.php file:
function tribe_prevent_filters_collapse() { ?>
<script type="text/javascript">
jQuery(document).ready(function (){
jQuery(window).resize ( function ( event ){
jQuery('body').removeClass('tribe-filters-closed').addClass('tribe-filters-open');
});
jQuery(window).resize ();
});
</script>
<?php
}
add_action('wp_head', 'tribe_prevent_filters_collapse');
And to hide the ‘Collapse Filters’ button, add this CSS to your stylesheet:
#tribe_events_filters_toggle {
display: none;
}
Please let me know if the snippets get this done,
Best,
Nico