Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How about those sub categories?
Coders
New
any chance of sub categories for v2? like a drop down box so lets say u have
General v
Blah1
Blah2
and it drops down, that would be pretty cool.
General v
Blah1
Blah2
and it drops down, that would be pretty cool.
0
Comments
My (tangentially related) plan is to create a set of tags/labels for each category. So say I have 3 top categories: Tech, Gaming, and Lifestyle. Then under Tech I have (checkbox) labels like: Graphics, Processors, Memory, Overclocking, Cooling, etc. Then if someone has a problem related to both their Processor and Memory, they won't scratch their head deciding how to categorize it. My first tier categories are either/or, but I find my second tiers have a lot of overlap so this is the compromise I'm looking to work out.
Let us know when you start working on it.
let me know when its up on your repo. sounds like a good plan. tagging is awesome.
I'm scratching my head, wondering if tags need to relate to multiple categories - ie:
// Construct the tag table.
$Structure->Table('Tag')
->PrimaryKey('TagID', 'int', FALSE, 'primary')
->Column('Tag', 'varchar(30)')
->Set(FALSE, FALSE);
// Construct the category to tag table.
$Structure->Table('CategoryTag')
->PrimaryKey('CategoryTagID', 'int', FALSE, 'primary')
->Column('TagID', 'int', FALSE, 'primary')
->Column('CategoryID', 'int', FALSE, 'primary')
->Set(FALSE, FALSE);
// Construct the discussion to tag table.
$Structure->Table('DiscussionTag')
->PrimaryKey('DiscussionTagID', 'int', FALSE, 'primary')
->Column('TagID', 'int', FALSE, 'primary')
->Column('DiscussionID', 'int', FALSE, 'primary')
->Set(FALSE, FALSE);
Where you could have say a Recipes forum (yes, lame example), with categories such as Appetizers, Desserts, Drinks. With tags, such as Sugar, Ice, Lemon, Frosting, Bread. The breakdown could look like:
Appetizers: Bread, Lemon
Desserts: Sugar, Lemon, Frosting
Drinks: Sugar, Lemon
Thoughts?
I hadn't planned to make tags cross-category. Is this academic curiosity or did you need it to work that way?