1

Hello, I'd like to remove the "Welcome to FogBugz" header from the home page after logging in, especially for community users. I myself find it distracting because I would think that clickin "Discussion Groups" would take me to possible discussion groups for the website, but instead it takes me to fog creek. How do I remove this?

alt..

flag

2 Answers

2

Another option might be to use the Custom Landing Page option under Admin -> Site Configuration -> Advanced.

Using this option allows you to select a public wiki page to sue in place of the default FogBugz homepage for visitors who are not logged in.

link|flag
2 
Fine for those who are not logged in -- it would be nice to be able to have that for those that are logged in as well! – Kris K. Apr 29 2010 at 14:13
@Kris @db yea, we currently have a custom landing page, but as Kris said, it doesn't work for community users – earlz Apr 29 2010 at 14:43
0

It's a bit hackish, but I ended up just installing BugMonkey and using this javascript for all users:

$("div.head").remove();
$("#idLinkToFogCreek").remove();

or actually later changed it to this CSS (avoid flicker problems)

div.head{
  display: none;
}
#idLinkToFogCreek{
  display: none;
}
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.