如何在维护模式下禁用消息 "Operating in maintenance mode. Go online."?

How can I disable the message "Operating in maintenance mode. Go online." in maintenance mode?

我基于 Drupal 7 和 Twitter 构建网站 Bootstrap 3. 此外,我将状态消息输出到模态 window。 但是我使用维护模式并且对于每个页面都会看到消息 "Operating in maintenance mode. Go online." 并且每次都应该关闭。于是,开始烦了(请看screenshot)。

如何禁用该模式的消息 "Operating in maintenance mode. Go online."?

感谢任何答案。

此致。

很抱歉,我找到了答案。 在 template.php 中放置下一行:

function mytheme_preprocess_page(&$vars) {
  if (variable_get('maintenance_mode', 0)) {
    $message_count = count($_SESSION['messages']['status']);
    if($message_count > 1) {
      array_shift($_SESSION['messages']['status']);
    }
    else {
      unset($_SESSION['messages']['status']);
    }
  }
}

别忘了将 "mytheme" 更改为您的 Drupal 7 主题名称。

祝你有愉快的一天!