- 🇹🇼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