Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 27, 2022 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/47dc4d1d6be702dddfbe4272a2f24f72 to your computer and use it in GitHub Desktop.
Save hivepress/47dc4d1d6be702dddfbe4272a2f24f72 to your computer and use it in GitHub Desktop.
Disable Font Awesome icons loaded by HivePress #hivepress #icons
<?php
add_filter(
'hivepress/v1/styles',
function( $styles ) {
unset( $styles['fontawesome'] );
unset( $styles['fontawesome_solid'] );
return $styles;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment