Clears Elementor-generated CSS files automatically after theme changes.
add_action( 'after_switch_theme', 'rds_clear_elementor_cache' );
function rds_clear_elementor_cache() {
if ( class_exists( 'ElementorPlugin' ) ) {
ElementorPlugin::$instance->files_manager->clear_cache();
}
}