Closed (won't fix)
Project:
Drupal core
Version:
4.7.0-beta2
Component:
node system
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
6 Jan 2006 at 16:57 UTC
Updated:
8 May 2011 at 14:54 UTC
It would be nice to have a webpage interface to disable the "Welcome to your new Drupal-powered website ...." statement.
Comments
Comment #1
chx commentedAnd what do you want to achieve by this?
Comment #2
haisam commentedWell, I have mission, and blocks in the content section and don't want to have the Welcome message appear when no blog/story/page is promoted to the front page. In other words I am not promoting blogs/story/page to the front page and hence don't want that message to appear. I can go ahead and delete that message from the code but that would break when I upgrade.
IMHO, the Welcome message should not be hardcoded but should be in the database and can be de-activated.
Comment #3
killes@www.drop.org commentedYou can set any page to be your front page, see admin/settings
Comment #4
haisam commentedYou misunderstood. I don't want the "Welcome ..." message to appear.
Comment #5
killes@www.drop.org commentedIt won't appear if you set the front page eg to "user" or to some other path.
Comment #6
haisam commentedI did that and the only thing that disappeared was the mission statement
Comment #7
eaton commentedI think what he's saying is that he's not using a *content page* for his ffront page content -- rather, he's assigning blocks to the 'content' region and only wants them to show up.
While I don't think disabling the welcome message is the answer, there's the seed of an important change here. Should the center content be a block in and of itself?
Comment #8
chx commentedPlenty of possibilites. Use front_page module. Use an empty node.
Comment #9
greg_y commentedFor what it's worth I would second the notion of disabling the "Welcome to Drupal" message when there is no content on the front page. For instance, I am developing a site w/ 4.7 that will have several blocks in the content area of the front page, but (ideally) no actual individual nodes promoted there. I have read this thread and http://drupal.org/node/30816 and understand my options, but it seems philosophically that one shouldn't have to hack node.module or install flexinode and create a empty content type simply to remove this message.
My guess is that with 4.7's ability to put blocks in the content area, the simple block creation of Views.module, and examples like FresnoFamous.com, 'content-less' front pages full of blocks will become more common. So this may be worth addressing after all.
---
PS In the thread above (http://drupal.org/node/30816) one user reported that Front_Page does not solve this problem. "Front_page doesn't work on q=node. if there is no promoted content you get the install welcome."
Comment #10
derekgws commenteda quick edit to the file .../modules/node/node.module will clear out the message.
do a search (ctrl+F) for the word "Welcome" in that file and then comment out the message like this:
Comment #11
scedwar commentedThat is great. We're rolling a patch for our own site to keep this in place.
Why? It is far too easy on a multi site, domain module enabled, panel pages (for the frontpage) site, to mess things up. I'd rather have a nicer message for our users about our site than some Drupal specific. I strongly urge core modifications in future Drupal versions a setting to override this permanently for a site.
Stephen
Comment #12
oeklesund commentedI do have the same problem... nothing new in the sun?
Comment #13
petrcerm commentedI hacked my theme's style.css file like this:
Comment #14
novan_as commentedThanks petrcerm :)
Comment #15
firemountain commentedYes thanks be to petrcerm!
Comment #16
appmux commentedThere's a module for that now:
http://drupal.org/project/unwelcome
Comment #17
BrianLewisDesign commentedThe unwelcome module seems to not work anymore.
/*Use CSS*/
#first-time { width:0; height:0; visibility:hidden; overflow:hidden; }
Comment #18
appmux commentedBad idea. That CSS will hide it from viewer but not from the search crawlers... and you don't want 'Welcome to your new Drupal website!' text appear under search results...
On top of that, Unwelcome module is for those who don't know or want to modify anything. Kinda download-enable thing.