Download & Extend

Can we have the option to remove the "Re: " prefix from comment titles in the admin interface?

Project:Node Comments
Version:6.x-3.x-dev
Component:User interface
Category:feature request
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

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

#1

Status:active» closed (fixed)

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

#2

still and issue.

#3

Subscribe

#4

+1 on removing or alter prefix

#5

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

#6

Status:closed (fixed)» active

#7

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

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

#8

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

#9

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.

#10

Status:fixed» closed (fixed)

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