Hi.
When I activate the front_page module, and put in content, set to front_page, and go to front_page, the title appears.
This does not happen in my test site where I am using same theme etc. I tried to disable the module and reactivate it, and still no go.
Should I just delete the module off server, and reinstall it and reactivate it? Does front_page add anything in the database and change anything?
Thanks. I really need to get the front page working without the title of the page displaying.
Comments
Comment #1
Phillip Mc commentedthe front page is designed not to display the page title, unless you are using a redirect
Comment #2
waynedrupal commentedThanks. I was using redirect, but changed that to not being redirected. I also used Login Destination, but removed that. But even so, the title still appears. Any thoughts?
Comment #3
Phillip Mc commentedUse a php snippet to display just the node->body of the node you're redirecting to in the front page settings textarea, select allow PHP and it will "pull" the node body of the node you're redirecting to and display that in the front page.
Example:
notes:
$teaser = FALSE, $page = FALSE, $links = TRUEfor example in the snippet above, if you changed the last FALSE to TRUE, it would display the$linksfor that node.Comment #4
Phillip Mc commented