Fix for how can I remove node title link?

  1. <?php
  2. // $Id: node.tpl.php,v 1.1 2009/02/28 23:33:58 jwolf Exp $
  3. ?>
  4.  
  5. <!-- start node.tpl.php -->
  6. <div id="node-<?php print $node->nid; ?>" class="node <?php print $node_classes; ?>">
  7.   <?php print $picture ?>
  8.  
  9.   <?php if ($page == 0): ?>
  10.   <h2 class="title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  11.   <?php endif; ?>
  12.  
  13.   <div class="meta">
  14.     <?php if ($submitted): ?>
  15.     <span class="submitted"><?php print $submitted ?></span>
  16.     <?php endif; ?>
  17.   </div>
  18.  
  19.   <?php if ($terms): ?>
  20.   <div class="terms">
  21.     <?php print $terms; ?>
  22.   </div>
  23.   <?php endif;?>
  24.  
  25.   <div class="content">
  26.     <?php print $content ?>
  27.   </div>
  28.  
  29.   <?php if ($links): ?>
  30.   <div class="links">
  31.     <div class="corner top-right"></div>
  32.     <div class="corner top-left"></div>
  33.     <div class="inner">
  34.       <?php print $links; ?>
  35.     </div>
  36.     <div class="corner bottom-right"></div>
  37.     <div class="corner bottom-left"></div>
  38.   </div>
  39.   <?php endif; ?>
  40.  
  41.   <?php if ($node_bottom && !$teaser): ?>
  42.   <div id="node-bottom">
  43.     <?php print $node_bottom; ?>
  44.   </div>
  45.   <?php endif; ?>
  46. </div>
  47. <!-- /#node-<?php print $node->nid; ?> -->

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.