Created
August 28, 2020 16:10
-
-
Save brianleejackson/0e11148e30a650d5a8022e5ae6f030f9 to your computer and use it in GitHub Desktop.
Disable Font Awesome in YITH WooCommerce Wishlist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@DeoThemes, great! Thanks for taking the time to share what's working for you.