This code automatically sorts topics by name in a certain board. I'll update it later to allow multiple boards if you want me to.
<script>
BOARD="1";
if(location.href.match("board," + BOARD + ".0.html")) {
location.href=smf_scripturl + "/board," + BOARD + ".0/sort,subject.html";
}
</script>
Change the BOARD="1" to the board number. You can find the board number by looking at the URL for the board and looking for "board,n.0" where n is the board number.
Basically what this code does is it automatically changes the URL from
http://forum.smfforfreex.com/index.php/board,1.0.htmlto
http://forum.smfforfreex.com/index.php/board,1.0/sort,subject.htmlThat makes the board's topics sorted.