Wed. February 10, 12:59:53 AM
Wow, clever hack, but way beyond what your average Facebook user wants to go through :)
Above is a screenshot of the new Facebook home page. One change on the new page is showing all types of updates rather than just status updates.
Facebook has once again decided to redesign their home page. These types of changes usually result in millions of users joining groups titled "I hate the new design" or something similar. Being a web designer I sympathize with Facebook.
One thing they changed with the recent redesign was removing the "status updates only" option on their home page. I'm now forced to sift through every group, fan page, image and application post my friends have made. Facebook does give me the option to hide specific applications but with 1000's of apps out there, it isn't practical to hide each and every one. Enter Stylish.
Using a Firefox addon called Stylish I was able to sift through Facebook's HTML & CSS and determine if they did a good job giving their home page elements proper class names and IDs. For whatever reason Facebook uses custom HTML attributes. One of these was called data-ft. The first value in that attribute is a number that represents various home page types. The example below uses "46" which is plan ol' vanilla status updates:
<div class="GenericStory UIStory clearfix aid_718391393" data-ft="{"sty":"46","actrs":"718391393","fbid":"328181226116","s_obj":"11","s_edge":"1","s_prnt":"11"}" id="div_story_1630882208_328181226116"></div>
By adding the code below into Stylish it will hide ALL types of updates on the Facebook home except for regular status updates:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("facebook.com") {
.GenericStory { display: none !important; }
#pagelet_intentional_stream div[data-ft*='sty":"46'] { display: block !important; }
}
Below is an example of this would be entered into Stylish:

You could also substitute the number 46 above with one of the below to show only these types of updates by default:
| Update Type | Number Value |
|---|---|
| Fan Page Added | 161 |
| Application | 237 |
| Friend Added | 8 |
| Group Added | 21 |
| Photo Added | 65 |
| Photo Album Added | 247 |
| Video Added | 128 |
Some people may love seeing everything their friends do on Facebook. I'm more interested in what they have to say and the rest just feels like noise. Feel free to take this code and make it your own.
Wow, clever hack, but way beyond what your average Facebook user wants to go through :)
Oh, hey, just stumbled on an easier solution.
Click Friends in the left menu. A sub-menu appears that says Status Updates. There you go.
BTW, I do hate the new design.
Yeah, but that doesn't change the fact that this is a HoW (Hack of Win).
banche
Site Coded And Designed By Neal Grosskopf Using No Crappy CMS Or Themes