Hello fellow Drupal developers,
I am currently working on a site that is mostly made of static hierarchical pages. I am using the book module, and it all works beautifully.
There are two pages that display dynamic content:
- a news page
- a customer list page
For the news page, I have created a book page, and I am using the insert_view module. I have created a view that displays the list of news, and inside the news page I put [view:news] - which display the relevant view (a list of links to each news node).
For the customer list page, I am doing the same, but the difference is that the content is categorized by "industry" (I use taxonomy). So I am using the view exposed filter. It works fine, but the display is quite ugly, and not really customizable. Ideally, I would prefer checkboxes rather than the select box. However it is not feasable with exposed filters.
So, I have two questions:
1 - Does anyone know of a way to make the exposed filter more customizable? I had a look at the code, but it's not very flexible for this purpose.
2 - Does anyone know what I could use instead the views exposed filter? Basically all I want is to have a "customer list" page where you can search by industrie. So you would have a checkboxe for each industry, and on submit it would display the list of customers attached to the selected taxonomy term(s) under the search.