[paidaccount] [generator] Hiding particular users' posts on the Friends page

Dec 25, 2005 21:11


Paid Accounts OnlyThe following tutorial requires creating and editing a custom theme layer, which in turn requires a paid, permanent, or early adopter account. Please read What are the paid account benefits? and How do I buy a paid account? to learn about the paid account benefits and how to buy a paid account.
This tutorial requires the creation of a theme layer. If you already have a theme layer, you will need to edit it and add the code below. If you do not have a theme layer, you will need to create one by following the instructions in the Theme Layer tutorial.

This tutorial will add a Usenet-style "killfile" to the Friends page, which will hide particular users' posts on your Friends page.

If your theme layer or layout already has code to print the Friends page, modify it to include the code described below. Otherwise, add the following code to your theme layer:

function FriendsPage::print_body () { var string killfile_list = " exampleusername1 exampleusername2 exampleusername3 "; foreach var Entry e ($.entries) { if( not $killfile_list->contains(" $e.poster.username ")){ $this->print_entry($e); } } var string range = "most recent entries"; if ($.nav.skip > 0) { $range = "$.nav.skip entries back"; } """ navigation [ viewing | $range ] """; # go forward/backward if possible if ($.nav.forward_url != "" or $.nav.backward_url != "") { var string sep; var string back; var string forward; if ($.nav.backward_url != "") { $back = """ earlier"""; } if ($.nav.forward_url != "") { $forward = """ later"""; } if ($back != "" and $forward != "") { $sep = "/"; } """ [ go | $back$sep$forward ] """; } ""; }
Replace "exampleusername1," "exampleusername2," and "exampleusername3" with the usernames of the users you wish to ignore, making sure to keep a space between each username. Now, the entries by these users are not printed.

Compile your layer, and it's ready to use. You will need to apply your theme layer via the Customize interface in order for your changes to take effect.

Additional References
What are the different S2 layer types?
Compiled by chineseinbed. Code modified for Generator by camomiletea. Based on tutorials by miome, teine, and lithiana.

hiding entries, paid accounts only, killfile, - generator

Previous post Next post
Up