Hi @osmosvfx
if you would share the error with the rest of the forum users, the rest of us might be able to help you as well.
Thank you and stay healthy!
Kevin
@pixelbart
PHP Warning: filemtime(): stat failed for /srv/htdocs/wp-content/https://osmosvfx.com/wp-content/themes/stack/style/css/theme.less in /srv/htdocs/wp-content/plugins/wp-less/lib/Stylesheet.class.php on line 94
PHP Fatal error: Uncaught Exception: load error: failed to find /srv/htdocs/wp-content/https://osmosvfx.com/wp-content/themes/stack/style/css/theme.less in /srv/htdocs/wp-content/plugins/wp-less/vendor/wikimedia/less.php/lessc.inc.php:144
I checked my Debug file and I think this is the error I am receiving.
once the WP-Less plugin is activated, I refresh my site and I get a white screen.
@pixelbart
I had similar problem – filemtime trying to get filepath with full url on it.
I solved it by changing in functions.php:
Before:
wp_enqueue_style(‘style.less’, get_template_directory_uri() . ‘/style.less’);
After:
wp_enqueue_style(‘style.less’, ‘themes/cssw/style.less’);