Skip to content

Instantly share code, notes, and snippets.

@vicskf
Created December 19, 2019 00:49
Show Gist options
  • Save vicskf/fe4cddff9a4212fb24d0910fefc7c98f to your computer and use it in GitHub Desktop.
Save vicskf/fe4cddff9a4212fb24d0910fefc7c98f to your computer and use it in GitHub Desktop.
TEC > V2 > Change views breakpoints
<?php
add_filter( 'tribe_events_views_v2_view_breakpoints', function( $breakpoints, $view ) {
return [
//change the following values to the desired ones
'xsmall' => 500,
'medium' => 768,
'full' => 960,
];
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment