Skip to content

Instantly share code, notes, and snippets.

@bmoredrew
Last active September 18, 2015 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmoredrew/bb22c6c6b1ea73d0e76d to your computer and use it in GitHub Desktop.
Save bmoredrew/bb22c6c6b1ea73d0e76d to your computer and use it in GitHub Desktop.
Remove unused styles from The Events Calendar plugin
//Remove unused styles from The Events Calendar plugin
function bd_remove_ecp_styles()
{
$styles = array(
'tribe-events-bootstrap-datepicker-css',
'tribe-events-calendar-style',
'tribe-events-custom-jquery-styles',
'tribe-events-calendar-style',
'tribe-events-calendar-pro-style'
);
wp_deregister_style( $styles );
}
add_action( 'wp_enqueue_scripts', 'bd_remove_ecp_styles', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment