How do I disable the display of the title of the story in the front page of my drupal site

Comments

coreyp_1’s picture

I'm assuming that your front page is no longer "node", but "node/XXX", right?

This is a theming issue, which means you will have to edit your page template in order to hide the title. What theme are you using, and are you familiar with PHPTemplate, or PHP?

- Corey

sandipdev’s picture

I have made my own custom theme...I know PHP Template and everything...I just want to know if there is a variable which gives true or false based on whether the current node is the front page or not.Something like this

 if(!frontpage): >
<?php print $title;

I believe...whatever doesn't kill you, makes you.......stranger

coreyp_1’s picture

try $is_front

- Corey