Title: Remove fa-solid-900.woff2
Last modified: March 30, 2022

---

# Remove fa-solid-900.woff2

 *  Resolved [tonyzyc](https://wordpress.org/support/users/tonyzyc/)
 * (@tonyzyc)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/)
 * This font is making my pages to load very slowly.
    I would like to know how to
   remove/disable it.
 * elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2
    -  This topic was modified 4 years, 2 months ago by [tonyzyc](https://wordpress.org/support/users/tonyzyc/).

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [Elementor Team](https://wordpress.org/support/users/talmo/)
 * (@talmo)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/#post-15509597)
 * Hi,
 * You can deactivate Google Fonts, Font Awesome, and Eicons for example, by adding
   the following lines of code to your functions.php file in your child theme.
 * For Google Fonts:
    add_filter( ‘elementor/frontend/print_google_fonts’, ‘__return_false’);
 * For Font Awesome:
 * add_action(‘elementor/frontend/after_register_styles’,function() {
    foreach( [‘
   solid’, ‘regular’, ‘brands’ ] as $style ) { wp_deregister_style( ‘elementor-icons-
   fa-‘ . $style ); } }, 20 );
 * For Eicons:
 * add_action( ‘wp_enqueue_scripts’, ‘remove_default_stylesheet’, 20 );
    function
   remove_default_stylesheet() { wp_deregister_style( ‘elementor-icons’ ); }
 *  Thread Starter [tonyzyc](https://wordpress.org/support/users/tonyzyc/)
 * (@tonyzyc)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/#post-15510045)
 * I added this code in functions.php, and clear the cache, but fa-solid-900.woff2
   still exists
 *     ```
       add_action(‘elementor/frontend/after_register_styles’,function() {
       foreach( [ ‘solid’, ‘regular’, ‘brands’ ] as $style ) {
       wp_deregister_style( ‘elementor-icons-fa-‘ . $style );
       }
       }, 20 );
       ```
   
    -  This reply was modified 4 years, 2 months ago by [tonyzyc](https://wordpress.org/support/users/tonyzyc/).
 *  Thread Starter [tonyzyc](https://wordpress.org/support/users/tonyzyc/)
 * (@tonyzyc)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/#post-15512185)
 * fixed, thanks
    -  This reply was modified 4 years, 2 months ago by [tonyzyc](https://wordpress.org/support/users/tonyzyc/).
    -  This reply was modified 4 years, 2 months ago by [tonyzyc](https://wordpress.org/support/users/tonyzyc/).
 *  [gpsc](https://wordpress.org/support/users/gpsc/)
 * (@gpsc)
 * [4 years ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/#post-15611129)
 * How did you fix it [@tonyzyc](https://wordpress.org/support/users/tonyzyc/) ?
   thx
 *  [JensGoro](https://wordpress.org/support/users/jensgoro/)
 * (@jensgoro)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/#post-15725471)
 * [@talmo](https://wordpress.org/support/users/talmo/) your provided code doesn’t
   not helped. Could you recheck please.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove fa-solid-900.woff2’ is closed to new replies.

 * ![](https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228)
 * [Elementor Website Builder - more than just a page builder](https://wordpress.org/plugins/elementor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/elementor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/elementor/)
 * [Active Topics](https://wordpress.org/support/plugin/elementor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/elementor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/elementor/reviews/)

 * 5 replies
 * 4 participants
 * Last reply from: [JensGoro](https://wordpress.org/support/users/jensgoro/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/remove-fa-solid-900-woff2/#post-15725471)
 * Status: resolved