Limited availability during the holidays
Another busy year is coming to its end, and an exciting year lies ahead. In order to get ready for a fresh new start, our team will spend a few days' rest during the winter holidays. Over the holiday break, we will have reduced staffing from December 20th, 2024, to January 5th, 2025, so please be patient if you do not receive a response as quickly as you normally would.
We send our warmest wishes for happiness, health, and success throughout the coming year. Thank you for your continued support, and may you have a peaceful and blessed Happy Holidays!
Using the latest version 6.5.1.
I think this is purely a cosmetic issue., but the System Status page ALWAYS displays :
Install Location : Non-standard
when installed on a windows server. I traced the problem down to how you are checking the directory in the '/wp-content/plugins/LayerSlider/views/system_status.php' file.
around lines 94 to 113, you check the directory and are looking for a directory that contains :
'/wp-content/plugins/LayerSlider/'
However in windows installed the slashes are 'FORWARD-SLASHES' not 'BACKSLASHES' so, in a windows install, the directory returned is '\wp-content\plugins\LayerSlider\' (note the change of slashes)
A simple fix is (I am not a programmer, so there are bound to be better fixes) :
Edit File : system_status.php
Add Line directly under :
Line 97: $test = strpos(LS_ROOT_FILE, '/wp-content/plugins/LayerSlider/');
New Lines should read :
Line 97: $test = strpos(LS_ROOT_FILE, '/wp-content/plugins/LayerSlider/');
Line NEW: if(!$test) {$test = strpos(LS_ROOT_FILE, '\\wpcontent\\plugins\\LayerSlider\\');}
Thanks for the plugin
Mark Anderson
Hey Mark,
Thank you for your feedback. We will check on this.