Well, for step 6 anyway, break it apart:
Quote:
FIND <!-- Tabbed Forum Home -->
below that look for the DIV that contains these <li> tags. I've included 3 SAMPLEs for us to work with (as listed below)
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2&tabcat[]=3" rel="ajaxTFHcontentarea">TAB 3 NAME</a></li>
|
Did you find this area yet? It should have been added back in Step 2b.
Quote:
OK now, lets get Categories to display under each tab.
You will notice that each <li> has a weird looking URL "tabforumhome.php?tabcat[]=1&tabcat[]=2"
To set a category you simply assign a category ID number to a tabcat[] variable like this: tabcat[]=1
|
Do like it says, and add your ID number of the forums categories you want showing up under a given tab.
Quote:
To have more than one category show up under a tab, just concat them like this: "tabforumhome.php?tabcat[]=1&tabcat[]=2&tabcat[]=3"
Its THAT simple.
|
And string them like that if you want more then one under a given tab.