I want to create a navigation system for my web application where there are several main categories for articles and several sub tags for each category.
For example, in category "Writing" there might be subcategories like "Essays," "Poetry" and "Fiction."
Each article would have a list of tags. If someone clicks the tag "Italy" on the fiction category show page I wouldn t want articles with the same tag of "Italy" from other categories like Essays or Poetry to appear on that page.
When a tag is clicked, the show page would be a category show page with a tag filter for all the articles with that particular tag in that category. It would not be a Tag show page.
Also, I d like a sidebar with related tags. These would be tags that are in the same articles as those displayed on the category show page in descending order. I got related tags to work on the Tag page itself but not with the category constraint.
So far, I can get category pages and tag pages to work seperately, but I d like to integrate the two.
I m currently using Acts as Taggable on Steroids for the Tags and Acts as Tree for the categories.
Any ideas?