Hello there.
I am making a site with a sticky introduction post at the top of the front page. This post is permanent and I want to hide the "submitted by" and date info from that post.
How can I do that? I guess I need to modify the node.tpl.php file, but I need help with the code.
Thanks!

Comments

nirbhasa’s picture

Find the bit of the node.tpl.php file that has the variable $submitted and replace with this

<?php if ($submitted && !$sticky ): ?>
        <div class="submitted">
          <?php print $submitted; ?>
        </div>
      <?php endif; ?>
bastoubach’s picture

Worked great, Thanks!

matthylland’s picture

Where do you find that?

bastoubach’s picture

where do you find what? the line of code? It is in your node.tpl.php file. The exact line number probably depends on your theme...