Quote:
Originally Posted by Soonerdude
I have a question about putting more than one category under a tab.
Code:
$forumbits2 = construct_forum_bit(13,1,0);
The instructions say the first number is the category number, what would I put if I wanted Category 13 and Category 14 to be in that same tab?
|
Multiple categories can be under the same tab. You still need to construct a forum bit for each one tho.. so you would do something like
Code:
$forumbits2a = construct_forum_bit(13,1,0);
$forumbits2b = construct_forum_bit(14,1,0);
In the instructions document, Tab 3 Sample is set up to display multiple categories, so just take a look at that part of the setup