Hi, I recently started using Drupal and I think it's super! I just have a couple of questions about comments... The first one is: How do I permanetly remove subjects from comments? And the second one: How do I change the order of comments? (Oldest first)?

Keep up the good work Drupal!

Comments

vm’s picture

order of comments. Edit each content type, and inspect the comment settings.

permenantly remove subjects from comments = comment_subject.module in the downloads area maybe

-Anti-’s picture

> How do I permanetly remove subjects from comments?

Another method is to theme it out:

In content-types -> edit -> comment settings -> uncheck "Comment subject field"
That hides the title field when creating a comment.

In your comment.tpl.php look for <?php print $title ?>
and either delete it or comment it out: <!-- <?php print $title ?><br/> -->