Hi Graeme,
you can make this changes in plugin and Night Mode will be set as default:
1.) open plugins/wp-night-mode/admin/class-wp-night-mode-admin.php
file, find this line of code: if ( 'true' == $wp_night_mode ) {
and just replace true with false.
2.) open plugins/wp-night-mode/public/class-wp-night-mode-public.php
file, find this line of code: if ( 'false' === $wp_night_mode ) {
and just replace true with false.
3.) open plugins/wp-night-mode/public/js/wp-night-mode-public.js
file, find all true
values and change them to false
and find all false
values and change them to true
this is it.
Just be careful when the new version of plugin is released and when you update the plugin these changes will be overwritten.
Regards
Marko