Skip to content

Instantly share code, notes, and snippets.

@orgspring
Created January 1, 2014 07:47
Show Gist options
  • Save orgspring/8206008 to your computer and use it in GitHub Desktop.
Save orgspring/8206008 to your computer and use it in GitHub Desktop.
add_action( 'admin_enqueue_scripts', 'remove_woo_styles_on_tribe_admin_screen' );
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->post_type == 'tribe_venue' || $current_screen->id == 'settings_page_tribe-settings')
) {
wp_deregister_style('woocommerce_admin_styles');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment