Last active
April 7, 2017 03:34
-
-
Save carlosonweb/a4e43b6f3ca1b885b5bc82e090bb8647 to your computer and use it in GitHub Desktop.
Remove Font Awesome from Beaver Builder Theme
This file contains 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
<?php | |
// | |
// Remove Font Awesome reference from Beaver Builder Theme | |
// --------------------------------------------------------- | |
add_action( 'wp_enqueue_scripts', function(){ | |
wp_dequeue_style( 'font-awesome' ); | |
wp_deregister_style( 'font-awesome' ); | |
}, 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment