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

Summit - October 22, 2007 - 12:13

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

AttachmentSize
feeds.jpg 36.46 KB

#2

Summit - October 31, 2007 - 10:24

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

webchick - April 22, 2008 - 05:52

+1 for this feature.

#4

webchick - April 22, 2008 - 06:40

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

dakotaroar - January 29, 2009 - 05:54

+1

#6

mdowsett - January 30, 2009 - 14:49

@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! :)

 
 

Drupal is a registered trademark of Dries Buytaert.