Post by CrAzY_J on Oct 12, 2005 12:30:38 GMT -8
Code description: In the board cells a link will appear to the sub-boards inside that board.
Code preview: Click
Code placement: Main Footers
Code Creator: CrAzY_J
Last Updated: February 4th 2006. Fixed some more bugs.
<script type="text/javascript">
/* Sub Boards in board cell
created by CrAzY_J ( hatakeforum.proboards30.com )
Do not redistribute this code without the creator's permission*/
var gCell = document.body.getElementsByTagName( "td" );
if( this.location.href.match(/\.com(\/(index\.cgi(#\w+|\?(action=home)?)?)?)?$/))
{
for( var sel = gCell.length-1 ; sel > 0 ; sel -- )
{
for( var bol = 0 ; bol < gCell.length ; bol ++ )
{
if( gCell[sel].align == "right" && gCell[sel].firstChild.options)
{
var Options = ( gCell[sel].firstChild.options[2].value.match(/\/index\.cgi$/) )? gCell[sel].firstChild.options:false;
if( gCell[bol].width == "66%" && gCell[bol].innerHTML.match(/\((\d+)\ssub-boar(d|ds)\)/i) )
{
var BoardName = gCell[bol].getElementsByTagName( "b" )[0].innerHTML;
var Subs = parseInt(RegExp.$1);
gCell[bol].innerHTML.match(/Moderator/)? gCell[bol].appendChild( document.createElement('br') ):null;
gCell[bol].appendChild( document.createTextNode("Sub-Boards: ") );
for( var opl = 0 ; opl < Options.length ; opl ++ )
{
if( new RegExp('^-\\s'+BoardName+'$','').test(Options[opl].innerHTML ))
{
for( var opl2 = Math.floor( opl + 1 ) ; opl2 < Math.floor( Math.floor( opl + Subs ) + 1 ) ; opl2 ++ )
{
var Link = document.createElement("a");
Link.href = Options[opl2].value;
Link.appendChild( document.createTextNode( Options[opl2].innerHTML.split(/-\s/)[1].replace(/&/gi, '&') ) );
gCell[bol].appendChild( Link );
( opl2 != Math.floor( opl + Subs) )?gCell[bol].appendChild( document.createTextNode(', ')):null;
}
}
}
}
}
}
}
}
</script>
Note: For this code to work you must have the "Display # of Sub-Boards" option enabled on your forum. This option can be found in the General Settings area of your admin panel.
Code preview: Click
Code placement: Main Footers
Code Creator: CrAzY_J
Last Updated: February 4th 2006. Fixed some more bugs.
<script type="text/javascript">
/* Sub Boards in board cell
created by CrAzY_J ( hatakeforum.proboards30.com )
Do not redistribute this code without the creator's permission*/
var gCell = document.body.getElementsByTagName( "td" );
if( this.location.href.match(/\.com(\/(index\.cgi(#\w+|\?(action=home)?)?)?)?$/))
{
for( var sel = gCell.length-1 ; sel > 0 ; sel -- )
{
for( var bol = 0 ; bol < gCell.length ; bol ++ )
{
if( gCell[sel].align == "right" && gCell[sel].firstChild.options)
{
var Options = ( gCell[sel].firstChild.options[2].value.match(/\/index\.cgi$/) )? gCell[sel].firstChild.options:false;
if( gCell[bol].width == "66%" && gCell[bol].innerHTML.match(/\((\d+)\ssub-boar(d|ds)\)/i) )
{
var BoardName = gCell[bol].getElementsByTagName( "b" )[0].innerHTML;
var Subs = parseInt(RegExp.$1);
gCell[bol].innerHTML.match(/Moderator/)? gCell[bol].appendChild( document.createElement('br') ):null;
gCell[bol].appendChild( document.createTextNode("Sub-Boards: ") );
for( var opl = 0 ; opl < Options.length ; opl ++ )
{
if( new RegExp('^-\\s'+BoardName+'$','').test(Options[opl].innerHTML ))
{
for( var opl2 = Math.floor( opl + 1 ) ; opl2 < Math.floor( Math.floor( opl + Subs ) + 1 ) ; opl2 ++ )
{
var Link = document.createElement("a");
Link.href = Options[opl2].value;
Link.appendChild( document.createTextNode( Options[opl2].innerHTML.split(/-\s/)[1].replace(/&/gi, '&') ) );
gCell[bol].appendChild( Link );
( opl2 != Math.floor( opl + Subs) )?gCell[bol].appendChild( document.createTextNode(', ')):null;
}
}
}
}
}
}
}
}
</script>
Note: For this code to work you must have the "Display # of Sub-Boards" option enabled on your forum. This option can be found in the General Settings area of your admin panel.