I have created a custom content type and using views2 for creating various page-views. I have used a taxonomy (having 4 terms, say "A", "B", "C" and "D") for broader categorization of this content type. There are 4 other taxonomies corresponding to each of the above terms "A", "B", "C" and "D" called "Taxonomy-A", "Taxonomy-B", "Taxonomy-C" and "Taxonomy-D" which are used to further sub-categorize this content type in a particular category (say "A" or "B" etc.). The sub-category "Taxonomy-A" is visible on the node edit form only if broader category "A" is selected. Similar is the case with "B", "C" and "D" categories. Now in my page-views, i have used Taxonomy terms "A", "B", "C" and "D" as my first arguments of the url. Thus the following url
www.example.com/A
provides all the published custom content types of "category A". Similar will be the cases for "category B", "category C" etc.
Now to filter my content types of a particular category (say "A") into its sub-categories, i have created FOUR exposed filters corresponding to each Taxonomy "Taxonomy-A", "Taxonomy-B", "Taxonomy-C" and "Taxonomy-D".
Now i would like to show only one filter on each type of "page-view";i.e.
Filter corresponding to "Taxonomy-A" on www.example.com/A page-view
Filter corresponding to "Taxonomy-B" on www.example.com/B page-view
Filter corresponding to "Taxonomy-C" on www.example.com/C page-view etc.
If i configure basic setting of view to show filter in a separate block, then the filter block contains all the Four Filter plus apply button. But I want to show only one filter (based on page url's first argument) with apply button.
Actually i would like to decouple all the exposed filters with each other and make each exposed filter as a separate block which can be assigned to a template region. Is it possible to achieve this by theming (each select element on views exposed filter form has different "id")? Otherwise the only option left with me is to create separate content types for each category "A", "B", "C" and "D", which is not a practical solution if the number of categories are large.
How i can achieve this?
Thanks in advance for your response!!