如果你想隐藏所有格式提示信息,则把这段函数放入文件中:
方法一:将自定义代码放入所用主题的template.php文件
function ModulNameOrYourThemeName_customize_comment_form(&$form) { $form[LANGUAGE_NONE][0]['format']['#access'] = FALSE; // Note LANGUAGE_NONE, you may need to set your comment form language code instead return $form; }
保存文件,并别忘了清除Drupal缓存 (Configuration > Development > Performance > Clear All Caches)。
方法二:用simplify模块做隐藏
板块
标签
Drupal 版本
更多讨论可以查看以下链接