I recently faced a small issue in Beaver Builder. Some fonts were loading but not being used. I found that the problem was with Beaver’s font preloading. With this simple hook, I disabled this feature. This code should be inserted into fucntions.php of your child theme. Hope this helps you too.
remove_action( 'wp_head', array( 'FLBuilderFonts', 'preload' ), 5 );
Leave a Reply