如果是做1级评论,可以参考Flatcomments模块,如果做2级评论,一个简单的方法是二级评论就不再显示评论链接了。参考代码如下,基于Drupal7:
<?php
function theme_preprocess_comment(&$variables) {
if ($variables['elements']['#comment']->depth > 1) {
unset($variables['content']['links']['comment']['#links']['comment-reply']);
}
}
?>