How To Remove a "Reply" Link In Drupal 7 Comments

Author: 
Parent Feed: 
Original Post: 

In your template.php file add the following code:

function themename_preprocess_comment(&$variables) {
  unset($variables['content']['links']['comment']['#links']['comment-reply']);
}

Don't forget to change themename to your theme's name. Now, everything should be working.

TagsĀ