At the bottom of my new Comment/Nodes, I get the option to "Edit, Delete, Reply". I don't want this functionality with some of my Comments (I'm using this module for an Ask the Experts feature... therefore, all "comments"(aka, Answers) for the Question content type will be replies to the Original Question. I don't want there to be any replies to Answers. Any chance I'm missing something here? If not, should this not be an option?

Thanks.

Comments

quicksketch’s picture

Sounds like a good feature to me. On one of my current sites I actually remove ALL comment links via hook_link_alter:

function mycustommodule_link_alter(&$node, &$links) {
  foreach ($links as $key => $link) {
    if (strpos($key, 'comment_') !== FALSE && $key != 'comment_add') {
      unset($links[$key]);
    }
  }
}
robertdouglass’s picture

Can't you go to Administer -> Content management -> Content types and make comments for your comment node type disabled? Or have I forgotten how the module works?

robertdouglass’s picture

Status: Active » Postponed

Quicksketch's suggestion is the proper way to get this feature for the time being.

crea’s picture

Status: Postponed » Closed (fixed)

D5 branch is not supported anymore. Closing.
Please reopen if the issue is relevant with Nodecomment 6.x-2 branch.