Skip to content

Instantly share code, notes, and snippets.

@saas786
Forked from kyleunzicker/gist:6225952
Created February 22, 2014 08:12
Show Gist options
  • Save saas786/9150367 to your computer and use it in GitHub Desktop.
Save saas786/9150367 to your computer and use it in GitHub Desktop.
function remove_woo_styles_on_tribe_admin_screen(){
global $current_screen;
if ( isset($current_screen->post_type) &&
($current_screen->post_type == 'tribe_events' || $current_screen->id == 'settings_page_tribe-settings')
) {
wp_deregister_style('woocommerce_admin_styles');
}
}
add_action( 'admin_enqueue_scripts', 'remove_woo_styles_on_tribe_admin_screen' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment