前奏
我已执行的操作
modules/system/maintenance-page.tpl.php
/public_html/sites/all/themes/bootstrap-business
/public_html/sites/default/settings.php
中设置$ conf变量:$ conf ['maintenance_theme'] ='bootstrap_business';`尽管如此,该网站仍在显示modules/system/maintenance-page.tpl.php
。我不知道为什么它不起作用。我也试过了:
maintenance-page--offline.page.tpl.php
bootstrap-business
以上工作都没有。我不认为在这么简单的任务上花费45分钟就足够了。我知道我可以编辑modules/system/maintenance-page.tpl.php
,但我不相信这是正确的方法。
有什么建议吗?
答案 0 :(得分:1)
清除/清除缓存(主题注册表缓存),然后重试。如果您已经这样做并且无效,请将页面预处理功能添加到您的默认主题 template.php :
bootstrap_business_preprocess_maintenance_page(&$variables) {
if (isset($variables['db_is_active']) && !$variables['db_is_active']) {
// Template suggestion for offline site
$variables['theme_hook_suggestion'] = 'maintenance_page__offline';
}
else {
// Template suggestion for live site (in maintenance mode)
$variables['theme_hook_suggestion'] = 'maintenance_page';
}
}