Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Created August 18, 2020 14:56
Show Gist options
  • Save cryptexvinci/b91508903219df25755bbfe88277c273 to your computer and use it in GitHub Desktop.
Save cryptexvinci/b91508903219df25755bbfe88277c273 to your computer and use it in GitHub Desktop.
Remove Ultimate Member um_old_css
<?php
add_action( 'wp_enqueue_scripts', 'um_remove_old_css', UM()->enqueue()->get_priority() + 1 );
if ( ! function_exists( 'um_remove_old_css' ) ) {
function um_remove_old_css() {
wp_dequeue_style( 'um_default_css' );
wp_dequeue_style( 'um_old_css' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment