Basically I can't see any big threads, just the small newer ones and it's annoying me. Anyone know how to help? Thanks.
Manually sort GD by last post (two clicks of the column). It doesn't default to sorting the threads by most recent reply in GD anymore unless you're using user extensions that automatically adjust for this.
[QUOTE=elixwhitetail;44222902]...unless you're using user extensions that automatically adjust for this.[/QUOTE]
Can you link us to a userscript?
[QUOTE=Swog;44239938]Can you link us to a userscript?[/QUOTE]
I use Tampermonkey to fix GD along with this code
[CODE]// ==UserScript==
// @name GD fixer
// @author Kiwi
// @include http://www.facepunch.com/*
// @include http://facepunch.com/*
// ==/UserScript==
var aa = document.getElementsByTagName("a");
var gdlnk = ["http://www.facepunch.com/forumdisplay.php?f=6", "http://www.facepunch.com/forums/6", "http://facepunch.com/forumdisplay.php?f=6", "http://facepunch.com/forums/6"];
for (var i = 0; i <= aa.length; i++) {
for (j = 0; j <= gdlnk.length; j++) {
if (aa[i].href == gdlnk[j]) {
aa[i].href = "http://facepunch.com/forumdisplay.php?f=6&sort=lastpost&order=desc";
break;
}
}
}[/CODE]