Hi there!
I have read several posts on this topic in this forum, but I found no solution. Can You help me please forcing a style.css update in the browser cache of the user with X Pro? (Every time after I make CSS updates)
I have the following setup for my custom CSS:
This are the CSS files in the child theme folder
custom-x-theme-style.css
custom-gravity-forms-style.css
custom-slider-revolution-style.css
This is how I enqueue the CSS files via functions.php
function child_enqueue_styles() {
wp_enqueue_style('custom-x-theme-style', get_stylesheet_directory_uri() .'/custom-x-theme-style.css', array());
wp_enqueue_style('custom-slider-revolution-style', get_stylesheet_directory_uri() .'/custom-slider-revolution-style.css', array());
wp_enqueue_style('custom-gravity-forms-style', get_stylesheet_directory_uri() .'/custom-gravity-forms-style.css', array());
}
add_action('wp_enqueue_scripts', 'child_enqueue_styles');
Any kind of help would be nice.