I'd like to add a taxonomy term (auto-complete) to the "Quick Add Feed" block....how can I achieve this?

Comments

aron novak’s picture

Good idea!
I think it's not hard to implement. Take a look on "feedapi_simplified_form". Patches are welcomed :)
However without coding you cannot do this.

mdowsett’s picture

I can't code... :(

alex_b’s picture

No need to patch FeedAPI.

Write a custom module and:

* add additional form elements to the simplified form with hook_form_alter()
* you may need to make sure that taxonomy modules detects and stores terms by tweaking the $node object on 'presave'

mdowsett’s picture

I'd have no clue how to accomplish this...

aron novak’s picture

In this case there is a possible way: http://drupal.org/paid-services - post a bounty and a developer can do this for you.
(I'm not interested in, it's just a suggestion for you to achieve your goal)

alex_b’s picture

Status: Active » Closed (fixed)

As outlined above, this functionality can implemented outside of FeedAPI.