Skip to content

Instantly share code, notes, and snippets.

@Willem-Siebe
Last active August 29, 2015 14:10
Show Gist options
  • Save Willem-Siebe/037d1d5d8b6ec2d92db9 to your computer and use it in GitHub Desktop.
Save Willem-Siebe/037d1d5d8b6ec2d92db9 to your computer and use it in GitHub Desktop.
Remove table (frontend) CSS from WooCommerce Dynamic Discounts & Pricing plugin, see http://codecanyon.net/item/woocommerce-dynamic-pricing-discounts/7119279.
// Remove table CSS from WooCommerce Dynamic Discounts & Pricing plugin, see https://gist.github.com/Willem-Siebe/037d1d5d8b6ec2d92db9
function wsis_remove_wcdpd_assets() {
wp_dequeue_style('rp-wcdpd-frontend-styles');
}
add_action('wp_enqueue_scripts','wsis_remove_wcdpd_assets',999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment