Hi
Open up the functions.php file and find this code:
if ($maintenance_mode) {
if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) {
wp_die($custom_logo_output . '<p style="text-align:center">'.__('We are currently in maintenance mode, please check back shortly.', 'swiftframework').'</p>', get_bloginfo( 'name' ));
}
}
around line 260, and change to:
if ($maintenance_mode) {
if ( current_user_can( 'edit_pages' ) || !is_user_logged_in() ) {
wp_die($custom_logo_output . '<p style="text-align:center">'.__('We are currently in maintenance mode, please check back shortly.', 'swiftframework').'</p>', get_bloginfo( 'name' ));
}
}
– Kyle