Skip to content

Instantly share code, notes, and snippets.

@carlosonweb
Last active April 7, 2017 03:34
Show Gist options
  • Save carlosonweb/a4e43b6f3ca1b885b5bc82e090bb8647 to your computer and use it in GitHub Desktop.
Save carlosonweb/a4e43b6f3ca1b885b5bc82e090bb8647 to your computer and use it in GitHub Desktop.
Remove Font Awesome from Beaver Builder Theme
<?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