comment-wrapper--node-answers.tpl.php in Answers 7.4
Themes comment wrappers.
File
theme/comment-wrapper--node-answers.tpl.phpView source
<?php
/**
* @file
* Themes comment wrappers.
*/
?>
<div class="answersComments <?php
print $classes;
?>"<?php
print $attributes;
?>>
<?php
if ($content['comments'] && $node->type != 'forum') {
?>
<?php
print render($title_prefix);
?>
<h2 class="answers-comments-title title"><?php
print t('Comments');
?></h2>
<?php
print render($title_suffix);
?>
<?php
}
?>
<?php
print render($content['comments']);
?>
<?php
if ($content['comment_form']) {
?>
<a class="answers-comments-form-title"><?php
print t('Add new comment');
?></a>
<?php
print render($content['comment_form']);
?>
<?php
}
?>
</div>