Hello
We know that today the fight between the updated css and the browser cache is complicated.
I’m trying to put the theme version instead of the wordpress version with the code below:
$theme = wp_get_theme();
$ver = $theme->get( ‘Version’ );
$themecsspath = get_stylesheet_directory() . ‘/style.css’;
$style_ver = filemtime( $themecsspath );
wp_enqueue_style( ‘theme-style’, get_stylesheet_uri(),array(),$style_ver );
But I have a problem. It ends up loading 2 files as the image shows.

How could we solve this problem?
I think it would be interesting to incorporate this function into the theme for the style and options css, because as it is a theme for sale we are always making changes and adjustments 🙂
Thanks
Rudimar