Skip to content

Instantly share code, notes, and snippets.

@alanef
Last active February 14, 2020 17:50
Show Gist options
  • Select an option

  • Save alanef/a2fbd2cc72a1834b48fa604da19792fe to your computer and use it in GitHub Desktop.

Select an option

Save alanef/a2fbd2cc72a1834b48fa604da19792fe to your computer and use it in GitHub Desktop.
Change the calendar styles
<?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