Last active
August 2, 2021 15:28
-
-
Save skyshab/40b878012b36eb02aaed2e1582a92526 to your computer and use it in GitHub Desktop.
change the responsive breakpoints for the v2 calendar views
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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