It can also be a script seperate from the website.
:eek:Wow !I wrote a greasemonkey script that can hide locked threads on this forum.
Works on my machine certified, but it may break at any time.
https://greasyfork.org/en/scripts/22314-cubecrafthidelockedthreads
After installation this will add a checkbox to that user-menu-thing to toggle the script.
Is greasemonkey only for firefox on PC ? Or can you have it on chrome too ? On a mac ?
Also, I'm learning javascript and I'm interrested to know how you "hid" the posts, if you want to explain that is ;)
I got the script to work on mozilla firefox, and it really helps :DOn firefox you need the greasemonkey addon, on chrome there is tampermonkey. Those should work on any os. I'm not sure about safari, there seems to ba a plugin for that but I can't test it.
For the hiding part, you can see the code here. The script basically loops through all elements that have the classes 'discussionListItem' and 'locked', and sets their css attribute 'display' to 'none'.
I wrote a greasemonkey script that can hide locked threads on this forum.
Works on my machine certified, but it may break at any time.
https://greasyfork.org/en/scripts/22314-cubecrafthidelockedthreads
After installation this will add a checkbox to that user-menu-thing to toggle the script.