Closed (works as designed)
Project:
Inherited formatter
Version:
6.x-1.1
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
21 Dec 2010 at 20:35 UTC
Updated:
10 May 2012 at 13:37 UTC
Does this work with nodereferences + taxonomy? When a user adds a photo into an album, I want the photo to have the same taxonomy as the album, is this possible?
Comments
Comment #1
Crell commentedNo, it only works for CCK fields. Taxonomy has no formatter in D6 so there's no way to specify that a vocab should/should not inherit. Plus, it's display only.
Comment #2
bomarmonk commentedYou can get this working with content taxonomy:
In the field inheritance formatter module, I just added changed line 85 from this
return array('text', 'number_integer');
to this
return array('text', 'number_integer' , 'nodereference' , 'content_taxonomy');
Comment #3
bomarmonk commentedCan we add some of these additional fields to the next release?
Comment #4
bomarmonk commentedAdd to next release?
Comment #5
Crell commentedNo, as I said this only works for CCK fields. I have no immediate plans to port this module to Drupal 7, so I don't know how if at all that would change things. If someone else wants to port it to Drupal 7, feel free to contact me. :-)
Comment #6
bomarmonk commentedFor the 6.x version, you can always change one line of code, as mentioned above, and use Content Taxonomy and Node Reference fields... it works.