Right now this is hardwired into nodecomment.module at line 434:

<?php
        // Set up an automatic title
        $re = t('Re: ');
?>

The problem is that not all of our comments are actually comments -- that is, in most instances we're using nodecomments as a way to allow people to rate nodes using the fivestar module, so each comment is really a Review that has standard drupal comments attached to it. In that case, having "Re: " in front of the title of a review doesn't really make sense because it's not in reply to something. We'd like to be able to set this on a case by case basis for different content types, because in the case of actual comments, we do want this prefix.

thanks!

Comments

crea’s picture

Status: Active » Closed (fixed)

Closing all issues. Please reopen if still relevant with Node Comments 6.x - 2.x

arbel’s picture

still and issue.

webwriter’s picture

Subscribe

jaxpax’s picture

+1 on removing or alter prefix

userok’s picture

It would be nice also. Anyone know a temporary or superficial solution to this?

userok’s picture

Status: Closed (fixed) » Active
userok’s picture

For my particular case (my nodes are displayed using Contemplate module) I removed the first 4 characters using:


print substr($node->title, 4); 

jaxpax’s picture

@userok Thanks for the tip with the substr() function.

crea’s picture

Version: 6.x-2.0-beta1 » 6.x-3.x-dev
Status: Active » Fixed

In 3.x comment types set up as "content" have full featured title.

Status: Fixed » Closed (fixed)

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