Skip to content

Instantly share code, notes, and snippets.

@woogist
Created June 11, 2014 15:28
Show Gist options
  • Save woogist/f82d5132e474d510f3e8 to your computer and use it in GitHub Desktop.
Save woogist/f82d5132e474d510f3e8 to your computer and use it in GitHub Desktop.
unregister / enqueue Bookings styles
<?php
function woo_dequeue_booking_styles() {
wp_dequeue_style( 'wc-bookings-styles' );
wp_deregister_style( 'wc-bookings-styles' );
}
add_action( 'wp_print_styles', 'woo_dequeue_booking_styles', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment