• Is there a filter that can be added to functions.php that would remove loading of the font awesome fonts. I understand this might break some blocks or features, but is there a way I can remove stop these loading in the front end anyway, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • christoph-ED

    (@webagenturerding)

    Same Problem here … I dont need Font Awesome in Frontend but i see Atomic Blocks is loading, its a small but it is useless file for frontend.

    You can remove this by using the following snippet in functions.php

    add_action( 'wp_enqueue_scripts', 'webwise_remove_atomic_block_css', 100 );
    
    function webwise_remove_atomic_block_css(){
        wp_dequeue_style( 'atomic-blocks-fontawesome' );
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Font Awesome’ is closed to new replies.