Hi guys, I want to do this in my theme:

If in frontpage 

no title

else

<h1 class="title"><?php print $title ?></h1>

I am not a coder but I can hack some php codes. I appreciate your help. Thanks in advance.

Comments

nevets’s picture

This will work in both page.tpl.php and node.tpl.php (you don't say which file you want this for)

<?php if ( !$is_front ) : ?>
<h1 class="title"><?php print $title ?></h1>
<?php endif; ?>
Jhun Vert’s picture

Thank you very much. I used it to page.tpl.php. I set my front page to forums and I dont want the title page Forums to appear. Again, thank you very much.