hello
im looking for a block module to do something like this :

i have vocabularies and terms like :
type : vegetable, fruit
color : red, orange, yellow....
size : big, medium, small...

i have made node with these terms associated

and now, i would like to see a block showing me the vocabularies and terms with ability to "build" an ajax filter
like :

********************
options
********************
type :
- vegetable ( add )
- fruit ( add )
============
color :
- red ( add )
- orange ( add )
- yellow ( add )
============
size :
- small ( add )
- medium ( add )
- big ( add )
********************

********************
filter
********************
select a term above
********************

then when i click on add, i have :

********************
filter
********************
- vegetable ( remove )
- red ( remove )
- small ( remove )
********************

like this, i can see the nodes taggued with "small red vegetable"...
if i click on remove button in front of small, i will see all the "red vegetables"... :)

do you know if a module like this exists ?

Comments

ssm2017 Binder’s picture

here is a good example to show what im looking for (this is not ajaxed but it is what i need ) :
http://demo.magentocommerce.com/catalog/category/view/s/cellphones/id/8/...

this is a magento store

see the left column and the block "shop by"

ssm2017 Binder’s picture

not exactly what i need but its a very fine one : http://drupal.org/project/taxonomy_filter

artem_sokolov’s picture

I know faceted search can, to some extent, accomplish this. However, i'm not sure if it's possible to support ajax within it.

ssm2017 Binder’s picture

very good one, thank you for the link ( maybe this is the one i need )

Ilbaboomba’s picture

Hi, I know that this is an old post, but I'm trying to do exactly the same thing.
Did you manage to do it? And if you did, how did you do it?
Thanks, Alessandro.

Ilbaboomba’s picture

In drupal 7, I solved doing this:

Search API + Database search modules installed (Views module too)

Configure->Search API -> added a new server and a new index and then, in new index:
fields: added related fields (vocabularies) and indexed the name for each vocabulary (as String instead of Fulltext worked better for me)
facets: enabled the vocabularies>>Name selected in fields page

Structure->Blocks: enabled the blocks created in the previous step (facets)

Structure->Views: created a new view that shows the index I created during the first steps, set the fields I wanted to retrieve and show, and saved everything.

Now it should work!
I hope this will be useful to someone!
Bye,
Alessandro.