Customizing the Sitelok control panel
Everything that users see in Sitelok is designed to match your site design. Only admin users will have access to the control panel but you can still makes various changes depending on your needs including making it 'white label'.
Changing the theme color
$adminskin="blue";
Changing the logo
You can replace the main logos displayed in the control panel with your own image.
which can be found at /slpw/adminlte/img/adminlogo.png
You can also replace the mini logo that is displayed when the navigation is minimized
which can be found at /slpw/adminlte/img/adminlogomini.png
Changing the copyright message
If you wish to white label the control panel you are free to replace the displayed copyright message with text of your choice. You must leave any copyright messages within the code in place though. All of the control panel text is defined in the file /slpw/adminlanguage-en.php including the copyright text.
define("ADMINGENERAL_FOOTERLEFT","<strong>Copyright © <a href=\"https://www.vibralogix.com/sitelokpw\">Vibralogix Ltd</a>.</strong> All rights reserved.");
As you can see you can use html in the text as well as long as any " character has a \ before it.
You can also change the right hand footer text
define("ADMINGENERAL_FOOTERRIGHT","Smart scripts for smart sites");
Translating or changing the control panel text
define("ADMINMENU_USERACTIONS","User actions");
$adminlanguage="de";
Disable the SQL Query filter
If you wish to disable the SQLQuery filter option you can add this setting to slconfig.php
$sl_noqueryoption=true;