[ad_1]
Hi, very quick question. As per the title, I am running WordPress 6.4.3 (latest at the time of writing) but with your plugin active I then log out and try viewing my site to find the homepage instead of the Main message..
Tried from a different device disconnected from my home network and in an in-private session of Edge but both are showing the site.
I’ve also cleared the cache but no change…
For context, if I disable your plugin and manually add the following to my functions.php it works just fine..
// Maintenance Mode
add_action('get_header', function() {
if(!current_user_can('manage_options')){
wp_die('<h1>Under Maintenance</h1><br />Website under planned maintenance. Please check back later.', 'Under Maintenance', array('response' => '503'));
}
});
