views:

7753

answers:

5

Hi.

I'm building a site where products are hold in a content type created with CCK. Products can be associated with multiple taxonomy vocabularities. Now I need an advanced product search which user could use to search by many search arguments (taxonomy terms, CCK field values). I have done quite a lot googling but I haven't been able to find a flexible enough module.

I have been able to create almost all needed features with Views' arguments but haven't been able to find a way to make the search form without my own custom search box. This isn't really the solution I'm looking for.

The question(s) follow: Is there a proper module for flexible custom searches or is an own module the only way? Is there a module for argument form for Views.

+4  A: 

There is a "Faceted Search" module (http://drupal.org/project/faceted_search) that offers an interesting concept of search, also applicable to CCK fields too. You can see a demo here. It rather offers you to select existing value sets (facets) and browse them elegantly, but still it's a search. (Use together with http://drupal.org/project/cck_facets)

PHP thinker
+5  A: 

Faceted Search and ApacheSolr integration modules are the two (separate) methods I would recommend.

Did you exhaust all of the possibilities of Views exposed filters?

bangpound
I was actually able to implement the search functionality with Views but wrote my own module for creating and handling the search form.
chlif
I've done the same thing. If there's a quicker solution that allows for great customization, I've not seen one better than Drupal Form API and a good understanding of executing Views.
bangpound
To sum up: if you know PHP, to search-enable a View - the simplest solution is to build a form with Form API. Sealed.
PHP thinker
A: 

What features can't you reproduce with Views? I've done some work with using views for a search interface, but I'd need to know more to help.

John Fiala
A: 

I got the same problem. Any solutions yet? I wonder if there is a module for creating general purpose forms in drupal (not webforms)?

babenko
A: 

Hi, any updates on that?

Reimo Tamm