FFixer

By Vaughan Chandler Last update Mar 9, 2011 — Installed 15,686,141 times.

Hover card disable and home menu removal not working

in
Subscribe to Hover card disable and home menu removal not working 5 posts, 3 voices



problem242? User
FirefoxWindows

Hover card disable isn't working
Also I can't remove the home button in the menu bar

 
problem242? User
FirefoxWindows

also the like filter for the home page isn't working. some other filters might also not be working but i haven't checked them

 
Ed G Scriptwright
FirefoxWindows

On the line starting with
if (prefs['HideHovercards'])
if you change the line to
if (prefs['HideHovercards']) { style = style + ' .uiOverlayArrow, .HovercardStage, .uiHovercardFooter { display:none; }'; }
it will hide the hovercard (I still get a small black spot in place of the rest), the only issue I see is it will also remove the upward arrow from any other dialog that may use it (I can't think of any that do)

 
Ed G Scriptwright
FirefoxWindows

Also for the Home button, on the line starting with
if (!prefs['HomeLink'])
change it to
if (!prefs['HomeLink']) { style = style + ' #pageNav #navHome { display:none; }'; }

 
temperror User
FirefoxWindows

Ed G: Thanks! But I changed to this instead:

if (prefs['HideHovercards']){ style = style + ' .uiOverlayArrowTop, .uiOverlayArrowBottom { display:none; }'; }

It gets rid of everything and the black dot.

If you want to add people or subscribe to someone quickly but do not want the extra elements in the hover card, you can do this:

if (prefs['HideHovercards']){ style = style + ' .HovercardStage { display:none; }'; }

Or if you don't want both arrows:

if (prefs['HideHovercards']){ style = style + ' .uiOverlayArrow, .HovercardStage { display:none; }'; }