Skip to content

Instantly share code, notes, and snippets.

@skyshab
Last active August 2, 2021 15:28
Show Gist options
  • Save skyshab/40b878012b36eb02aaed2e1582a92526 to your computer and use it in GitHub Desktop.
Save skyshab/40b878012b36eb02aaed2e1582a92526 to your computer and use it in GitHub Desktop.
change the responsive breakpoints for the v2 calendar views
<?php
add_filter( "tribe_events_views_v2_view_breakpoints", function($breakpoints){
return [
'xsmall' => 500,
'medium' => 768,
'full' => 960,
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment