Hi Christian,
This should get you on your way:
function remove_styles() {
if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
//wp_dequeue_style( 'tribe_events-admin-ui' );
wp_dequeue_style( 'tribe-events-mini-calendar' );
wp_dequeue_style( 'tribe-events-calendar-style' );
}
}
add_action('wp_print_styles','remove_styles',1);
function remove_scripts() {
if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
wp_dequeue_script( 'tribe-events-calendar-script' );
wp_dequeue_script( 'tribe-events-pjax' );
wp_dequeue_script( 'tribe-events-mini-calendar' );
wp_dequeue_script( 'jquery-ecp-plugins' );
wp_dequeue_script( 'chosen-jquery' );
wp_dequeue_script( 'tribe_events-admin' );
}
}
add_action('wp_print_scripts','remove_scripts',1);
Put that in your theme’s functions.php file and add/remove whatever you want/don’t want. You can also use these conditional wrappers to further customize this: https://gist.github.com/2415009
I hope that helps!
– Jonah