A question or 2 about comments.
Mpyre - November 1, 2009 - 17:12
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!

=-=
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
> How do I permanetly remove
> 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/> -->