Thanks, it works 🙂 I have also found something like this:
add_filter( 'style_loader_tag', function( $html, $handle, $href, $media ){
$exclude_tags_for = array(
'hustle_popup',
'hustle_social',
'hustle_inline',
'hustle_float',
'hustle_slidein',
'hustle_icons',
'hustle_global',
'hustle_info',
'sui_styles',
'hstl-source-code-pro',
'hstl-roboto',
'hstl-opensans'
);
if ( in_array( $handle, $exclude_tags_for ) ) {
return;
}
return $html;
}, 20, 4 );