Needs review
Project:
CCK Facets
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
25 Mar 2010 at 18:27 UTC
Updated:
29 Jun 2010 at 16:34 UTC
I would like to add CCK Taxonomy field, any suggest?
Maybe editing text_facets.module in this point (if ($field['type'] == 'text') {)?
Comments
Comment #1
Jackl85 commentedAdd link to project: Content Taxonomy
Issue open on Content Taxonomy: #687690: Interface to Faceted Search Module
Comment #2
Jackl85 commentedFix it!
Edit
text_facets.modulein:if ($field['type'] == 'text') {with:
if ($field['type'] == 'text' || $field['type'] == 'content_taxonomy') {Work for me! :)
Comment #3
david lesieur commentedI haven't tested this yet and it is quite possible that the change may be that simple. However, the change should be reviewed by people other than its author to get marked as "reviewed & tested by the community". A single person does not count as a community. :-) Thanks!
Comment #4
Fanaile commentedokie -
I applied the edit that was posted here and so far it does seem to work for me - I haven't received any errors and the search page looks good.
Comment #5
Jackl85 commented@David Lesieur
Thanks for suggest, next time I will use "needs review".
There is a "know issue" with this edit.
Work very well with plain taxonomy (all term deeph = 0)
If my taxonomy is like:
Problem:
In Facet search I will see a plain list of term (maybe annoing)
If I select
Term 1.2I see only content withTerm 1.2(and notTerm 1.2.1)I can't fix that problem now, I'm newbie Drupal developer ^^'
Comment #6
zkrebs commentedI have applied the small change mentioned in #2 and it works , exposed the content_taxonomy fields in my faceted search environment.