Skip to content

Instantly share code, notes, and snippets.

@srikat
Last active December 31, 2015 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save srikat/7943991 to your computer and use it in GitHub Desktop.
Save srikat/7943991 to your computer and use it in GitHub Desktop.
//* Stop Simple Social Icons' CSS from loading and load our modified copy
add_action( 'wp_enqueue_scripts', 'sk_disable_simple_social_icons_styles', 11 );
function sk_disable_simple_social_icons_styles() {
if ( class_exists( 'Simple_Social_Icons_Widget' ) ) {
wp_dequeue_style( 'simple-social-icons-font');
wp_enqueue_style( 'simple-social-icons', get_bloginfo( 'stylesheet_directory' ) . '/css/simple-social-icons.css', array(), CHILD_THEME_VERSION );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment