Aledmann, I used the following to just point mobile users to the list view:
<?php if ( wp_is_mobile() ) {
wp_redirect( 'http://URLTOLISTVIEW', 302 ); exit;
} else {
tribe_get_template_part('month/content');
} ?>
Aledmann, I used the following to just point mobile users to the list view:
<?php if ( wp_is_mobile() ) {
wp_redirect( 'http://URLTOLISTVIEW', 302 ); exit;
} else {
tribe_get_template_part('month/content');
} ?>