Last active
February 14, 2020 17:50
-
-
Save alanef/a2fbd2cc72a1834b48fa604da19792fe to your computer and use it in GitHub Desktop.
Change the calendar styles
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 | |
| //* Do NOT include the opening php tag shown above. Copy the code shown below. | |
| //* use the filter wfea_cal_options for the list view | |
| //* the following example removes the event time | |
| //* changes background to black | |
| //* sets the pop up to youtube style | |
| //* see full list of options here | |
| add_filter('wfea_cal_options', function($options) { | |
| $options['fullcalendar']['displayEventTime'] = false; | |
| $options['fullcalendar']['eventBackgroundColor'] = '#000'; | |
| $options['qtip']['classes'] = 'qtip-youtube'; | |
| return $options; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment