Multiple vocabularies inheritence please?
Summit - October 8, 2007 - 21:18
| Project: | SimpleFeed |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
Hi,
I see in the admin options that I am able to add only one vocabulary to the inheritence options.
I would like to add more than one vocabulary and inherit all the terms selected on the feed-parent.
Is this possible please? Also I would very much like that the vocabulary need not have freetagging enabled.
Is ths also possinle please?
Thanks in advance,
Thanks for a great module!
greetings,
Martijn

#1
Hi,
When I look into the admin of simplefeed I can only add one vocabulary to get inherited to my feed-items (see attached picture).
I would like to be able to inherit all my vocabularies. Can this be done please?
Thanks in advance!
greetings,
Martijn
#2
Hi,
I have solved this with another module for feeds; the aggregation module:
http://drupal.org/node/186014#comment-329180
Are there plans to combine the efforts on feeds to only one module..because also in showing the feeds and maintaining a site it would be nice that only one feed-node would do all what the different feed-modules can do now!
Thanks anyway for the straight-forward module, a little to straight forward to my purpose.
greetings,
Martijn
#3
+1 for this feature.
#4
Here's a hackish workaround:
<?php/**
* Implementation of hook_nodeapi().
*/
function example_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
switch ($op) {
case 'submit':
// Sync feed and feed item terms.
if ($node->type == 'feed_item') {
$feed_terms = taxonomy_node_get_terms($node->fid, 'vid');
$node->taxonomy = $feed_terms;
}
break;
}
}
?>
#5
+1
#6
@webchick - where would you put this work around?
Can you explain what it exactly does? I can't read code all that well.
I have feed items I'd like to associate more fields to....like location taxonomy terms, event (node) reference, even an attached image. So that all feed items that come in on a feed get all that added (set up in the feed-node). I currently manually enter all that info for each feed-item that comes in...boring! :)