11/02/2011

Drupal 7: Manipulasi "Add new comment"

Hapus link "Add new comment" dari teaser atau bila form komen ditampilkan di halaman sama.

Salin node.tpl.php ke direktori theme terkait, lalu sunting.

Ubah baris

<?php print render($content['links']); ?>

Menjadi

<?php
  // Remove the "Add new comment" link on the teaser page or if the comment
  // form is being displayed on the same page.
  if ($teaser || !empty($content['comments']['comment_form'])) {
    unset($content['links']['comment']['#links']['comment-add']);
  }
  // Only display the wrapper div if there are links.
  $links = render($content['links']);
  if ($links):
?>
  <div class="link-wrapper">
    <?php print $links; ?>
  </div>
<?php endif; ?>

Sumber bacaan:
http://drupal.org/project/bartik

0 comments:

Post a Comment