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

CommentFileSizeAuthor
#1 feeds.jpg36.46 KBsummit

Comments

summit’s picture

StatusFileSize
new36.46 KB

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

summit’s picture

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

webchick’s picture

+1 for this feature.

webchick’s picture

Here's a hackish workaround:

/**
 * 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;
  }
}
mattbk’s picture

+1

mdowsett’s picture

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