Changelog 2.1.9

The Changelog file is located in the web root, or you can simply view it in the Backend of your application here: Miscellaneous->Changelog.
 
The latest update said something about changing to dark mode via a top-right switch/option/something. Sadly there is no such thing and the message has since gone away. I can see the slicker style (thanks!), but nothing on the top right that I could apply further changes to.
 
Hello,
Please try to clear cache and hard reload your browser page.

Cosmin
 
Sorry if I'm stupid.

I run with 2.1.3 and before update to 2.1.9 I want to know what are the changes...
Can anyone help me to understand what I need to see the changelog up to my installed version and not the following ones (like 2.1.9) that I need?
:):):)
 

Attachments

  • ch.png
    ch.png
    286.8 KB · Views: 10
Does anyone know how I could FORCE dark mode for every customer and their login page?
create a file called init-custom.php in the /apps/ folder and put this in it:
PHP:
<?php
    
    hooks()->addFilter('body_classes', function(array $bodyClasses = []){
    
        $bodyClasses[] = 'dark';
    
        return $bodyClasses;
    });
Not tested, but should work...
 
Back
Top