• Resolved katojune

    (@katojune)


    Hi,

    So would it be possible to disable the loading of the FontAwesome icons?. My site/theme already loads FA (pro) and the blocks version causes the fonts not to work.

    Other than that best Gutenberg addition i have tried out.

Viewing 1 replies (of 1 total)
  • Plugin Author atomicblocks

    (@atomicblocks)

    Hey there,

    Thanks for writing in. That’s a good request, and one we’ll try to address in the future versions. Perhaps we can provide a setting to disable our FontAwesome fonts in favor of the theme.

    Until then, you can disable the font output by adding this to your theme via a child theme. There are also plugins that will let you add snippets like this.

    function ab_disable_fa() {
       wp_dequeue_style( 'atomic-blocks-fontawesome' );
    }
    add_action( 'wp_print_styles', 'ab_disable_fa', 100 );

    Hope that helps!

Viewing 1 replies (of 1 total)

The topic ‘FontAwesome fonts’ is closed to new replies.