- 🇹🇼Taiwan typingmonk
Thanks for
kurinjiselvan v
's patch 🐛 Multiple reference field values & Multiple term reference values are failed to import from CSV Needs review .
It helps me to import simple one-to-many text-field with delimiter `|` - 🇺🇸United States eahonet
Hello All. And thank you for all the code in this thread. I'm working on a D10 site and have thousands of news articles with multiple tags (taxonomies) and thousands of users with multiple roles that need to be imported.
I'm on the latest 8.x.1.x branch and can't get some of these patches to apply. So I made this patch based on #26.
Some of the changes in the patch were already part of 8.x-1.x and some were more formatting. I grabbed what I think was the required code and made this patch.
I did have to change up one functional piece
if (is_string($item_value) && (file_exists($item_value) || file_get_contents($item_value))) {
to be
if (is_string($item_value) && file_exists($item_value) && file_get_contents($item_value)) {
this got images working for me.My logs have lots of warnings in them after importing csvs, but they are importing correctly. So I'm feeling goodish about it.
- last update
over 1 year ago 3 pass - Status changed to Fixed
25 days ago 4:37pm 29 January 2025 - 🇺🇸United States timwood Rockville, Maryland
Multiple functionality appears to have been added to the 2.x version of this module, including the 2.0 release. Using the documented format → , you can import multiple reference values (term ID), plain text and probably other types.
multiple(1021+1056)
Changed the version to 2.x and marked as fixed.
Automatically closed - issue fixed for 2 weeks with no activity.