我正在使用 Drupal Homebox 模块(https://drupal.org/project/homebox,版本 7.x-2.0-beta6)来创建仪表板。我发现使用 Twitter 引导主题时,保存仪表板上块的状态/位置(关闭或移动)的保存功能不起作用的问题。但是使用蜡染主题时没有问题。我找不到任何导致此问题的线索。
任何帮助将不胜感激!
我正在使用 Drupal Homebox 模块(https://drupal.org/project/homebox,版本 7.x-2.0-beta6)来创建仪表板。我发现使用 Twitter 引导主题时,保存仪表板上块的状态/位置(关闭或移动)的保存功能不起作用的问题。但是使用蜡染主题时没有问题。我找不到任何导致此问题的线索。
任何帮助将不胜感激!
我花了几个小时,但解决方案是如此简单和令人难以置信。在包含下的引导主题中搜索 form.inc 文件。在这个文件中所有字段被覆盖. 所以 homebox 正在搜索一个动作和一个输入字段,但没有找到任何人。如果您替换此查询中的 else 返回值:
if (isset($element['#id']) && in_array($element['#id'], $whitelist)) {
return '<input' . drupal_attributes($element['#attributes']) . ">\n"; // This line break adds inherent margin between multiple buttons
}
else {
return '<button' . drupal_attributes($element['#attributes']) . '>'. $label ."</button>\n"; // This line break adds inherent margin between multiple buttons
}
with this: return '<input' . drupal_attributes($element['#attributes']) . ">\n";
// 这个换行符增加了多个按钮之间的固有边距
您将开始使用 homebox。