I can’t show an example because I already switched to a different theme. And the site isn’t public yet.
But you can see the problem in the source code.
obfx_modules/gutenberg-blocks/init.php
public function enqueue_block_assets() {
wp_enqueue_style( 'font-awesome-5', plugins_url( 'assets/fontawesome/css/all.min.css', __FILE__ ), [], $this->version );
wp_enqueue_style( 'font-awesome-4-shims', plugins_url( 'assets/fontawesome/css/v4-shims.min.css', __FILE__ ), [], $this->version );
}
vendor/codeinwp/elementor-extra-widgets/class-elementor/extra-widgets.php
public function register_styles() {
wp_register_style( 'eaw-elementor', plugins_url( '/css/public.css', __FILE__ ), array(), $this::$version );
wp_register_style( 'font-awesome-5', ELEMENTOR_ASSETS_URL . 'lib/font-awesome/css/all.min.css', false, $this::$version );
}
obfx_modules/menu-icons/init.php
public function public_enqueue() {
if ( $this->should_load_fa() === false ) {
return array();
}
return array(
'css' => array(
'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' => array( 'dashicons' ),
'public' => false,
),
);
}