As per subject, any tips are appreciated. This may be more a general drupal question though.

Comments

jeremycaldwell’s picture

Status: Active » Fixed

Hi giorgia79, that's more of a generic theming question as this method applies to all themes. Go to your theme's directory and create a new file called "comment-wrapper.tpl.php". Within that file add this bit of code:

<?php if ($content) : ?>
<div id="comments" class="comments block">
  <h2 class="comments-header">
    <?php print $node->comment_count ?> <?php print t('Comments'); ?>
  </h2>
  <?php print $content; ?>
</div>
<?php endif; ?>

That should make the comment wrapper print something like:

4 Comments
CONTENT

So you can reorder that bit of code as needed too. You can add this code to your theme's "comment-wrapper.tpl.php" file but be sure to clear your site's cache so it reloads the new theme files. Should be all set.

giorgio79’s picture

Much appreciated eternalistic :)

aac’s picture

Subscribing!!

Status: Fixed » Closed (fixed)

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