Which file would I edit to change the text that says: "Add New Comment" and "Post New Comment" I need to change it to say review instead of Comments.

Thanks for any help

Comments

Jordash’s picture

I looked through comment.tpl.php but couldn't find anything promising.

Karlheinz’s picture

It seems like this is not in any of the templates, but in the comment_link() function in the core comment.module:

http://api.drupal.org/api/function/comment_link

I assume you could just override this function in your theme's template.php file.

-Karlheinz

gausarts’s picture

I posted a solution that might help in your case: http://drupal.org/node/224183#comment-1562310

love, light n laughter

ugrastroyinfo’s picture

Can you see how I renamed http://ugrastroyinfo.ru

SestuDeus’s picture

so, look at this:

http://www.tuourl.com
http://www.parkeddomainsforsale.net

in these two websites i've found the solution! WOW

f..k the spam

foxtrotcharlie’s picture

A simple way is to use a theme preprocess function in your template.php:

function mytheme_preprocess_box(&$vars, $hook) {
  switch($vars['title']) {
   case 'Post new comment':
    $vars['title'] = t('Leave a comment or suggestion...');
  }
}

for more info see http://www.systemseed.com/blog/how-customise-comment-form-drupal-6