Skip to content

Instantly share code, notes, and snippets.

@brianleejackson
Created August 28, 2020 16:10
Show Gist options
  • Save brianleejackson/0e11148e30a650d5a8022e5ae6f030f9 to your computer and use it in GitHub Desktop.
Save brianleejackson/0e11148e30a650d5a8022e5ae6f030f9 to your computer and use it in GitHub Desktop.
Disable Font Awesome in YITH WooCommerce Wishlist
if ( function_exists( 'yith_wishlist_install' ) ){
if ( ! function_exists( 'yith_wcwl_remove_awesome_stylesheet' ) ) {
function yith_wcwl_remove_awesome_stylesheet() {
wp_deregister_style( 'yith-wcwl-font-awesome' );
}
}
add_action( 'wp_enqueue_scripts', 'yith_wcwl_remove_awesome_stylesheet', 20 );
}
@brianleejackson
Copy link
Author

@DeoThemes, great! Thanks for taking the time to share what's working for you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment