Please,
1) make the fixed text (currently displayed below each comment) "Login or register to post comments" configurable.
2) add an option to repeat this text per node (by default) or comment.
This is relevant to all comment voting and flagging modules, as discussed here: http://drupal.org/node/915502

Comments

ken hawkins’s picture

This won't add a UI option to configure, but you can override with the solution at http://drupal.org/node/522430

Cross-posted here for ease of consumption.

In template.php file:

function phptemplate_links($links, $attributes = array()) {
  global $user;
  if (!$user->uid && $links['comment_forbidden']) {
    $links['comment_forbidden']['title'] = 'Comment';
  }
  return theme_links($links, $attributes);
}

It looks like there's also a way to do it in string overrides but I haven't tried
http://drupal.org/node/522430#comment-4013486

ken hawkins’s picture

Status: Active » Needs review
ken hawkins’s picture

Status: Needs review » Fixed

Setting to fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.