SimpleFeed taxonomy URL problem -
adresaklumea - September 14, 2008 - 20:39
| Project: | SimpleFeed |
| Version: | 5.x-2.2 |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I've installed simplefeed . Everything works fine except for this: when I add a new RSS source and refresh it for the first time, the item feeds created are well placed in taxonomy categories. But then when cron runs and simplefeed adds news feed items automatically, these are no more placed in taxonomy category, these are created without any category.
Any ideas ?
--------------------------
Blog Press

#1
I'm sorry, this is not a critical issue
#2
I'm using simple feed 5.2 and drupal 5.10. The problem : feed items automatically inherit their feed parent's terms. I figured up from my site that this is happening just for the child terms of a parent term.
On a hard approach I edited the feed_item.module to fix this. I commented all from
// free tagging casetoelse if ($process_feed->taxonomy) {//if ($term->vid == $vid) {with the matching }, and left only
if ($vid) {
foreach ($process_feed->taxonomy as $tid => $term) {
$item->taxonomy[$vid][$term->tid] = $tid;
}
}
In this way the feed inherits terms, but only first level terms.
Can you give me a solution ?
I should mention that my codding skills are limited.