I have also change CSS Print Method to Internal Embedding but still it showing FOUC. Then I have try second time with this given code but still its showing Unwanted style
add_action( ‘wp_enqueue_scripts’, function() {
if ( ! class_exists( ‘\Elementor\Core\Files\CSS\Post’ ) ) {
return;
}
$template_id = 7742;
$css_file = new \Elementor\Core\Files\CSS\Post( $template_id );
$css_file->enqueue();
}, 500 );