Hello there!!
I have searched enough and could not find a solution. So, posting here.
I wanna upload at least 10 images at once and for that I'm using IMCE CCK and its very good module, no doubt about that.
Also, while uploading/attaching the images, I wanna tag individual image with taxonomy terms.

Is there any way, shape or form to achieve this?
If no solution is found, I will write some code to do that, of course!

Thank you very much.

[edit] typo

Comments

vm’s picture

there is no module that I am aware of that allows you to tage multiple images in the same page.

beautifulmind’s picture

Thanks VM.
I have made up my mind to write the code, but I thought that lets try if any one knows about.

Thank you.

Regards.
🪷 Beautifulmind

beautifulmind’s picture

I'm trying to insert few elements in the already existed form with drupal_render(form_builder(NULL, $form, NULL));
As this is not an HTML form, so, ignored the $form_id. Also, the $form_state is set to null.
But I'm getting error mentioning that only variables can be passed by reference.

So, what am I missing?

Regards.

Regards.
🪷 Beautifulmind

beautifulmind’s picture

Solved this hurdle with

$form_state = array(NULL); 
return drupal_render(form_builder(NULL, $form, $form_state));

Regards.
🪷 Beautifulmind

beautifulmind’s picture

So, Finally, I have tagging for individual image on a IMCE CCK image field.
I used hook_elements() to insert the extra field to IMCE CCK feild and collecting data by writing a custom function which was a very tedious and complicated process.
An image can be tagged with taxonomy terms using AHAH. And can also be removed using AHAH.

I hope this will be useful to some one, some time.

Regards.

Regards.
🪷 Beautifulmind