Universal CSV Import - Fields not supported

09.10.2025 18:11
#1
Eichner
Joomshopping forum user no avatar
Name: Ronny
31.10.2013
Posts: 9
Quote
Universal CSV Import - Fields not supported

After updating from version 4.17.0 to 4.21.8 I always get the following error:

Fields not supported: manufacturer_de-DE,manufacturer_en-GB,delivery_time_de-DE,delivery_time_en-GB,units_of_measurement_de-DE,units_of_measurement_en-GB
Edit your configuration

I have no idea, what "Edit your configuration" means. The template file includes now columns for "manufacturer", "manufacturer_de-DE" and "manufacturer_en-GB". But no matter if I include unlocalized version, both localized version, all three of the columns or none of them, I always get this error.

In the unicsvimportdata.php I found the following code, which seems to check exactly the three fields manufacturer, delivery_time and units_of_measurement and mark it as old version.

public function getListFieldsFromOldVersionConfig() {
$fields = [];
$old = ['manufacturer', 'delivery_time', 'units_of_measurement'];
foreach($this->setting->importFieldCheckedStates as $name => $used) {
if ($used && preg_match('/(.*?)_([a-z]{2})\-([A-Z]{2})/', $name, $matches)) {
if (in_array($matches[1], $old)) {
$fields[] = $name;
}
}
}
return $fields;
}

I tried switching off the English language from Joomla and from JoomShopping, I deactivated the fields in the import settings, but nothing works, always the same. What can I do?

 
10.10.2025 08:05
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 28000
Quote
Aw: Universal CSV Import - Fields not supported

Edit your configuration

Options / Import&Export / Universal CSV Import
Setting

default or other...
Use field:
Manufacturer
other (Manufacturer_en-GB or ...) need disable
Aw: Universal CSV Import - Fields not supported


Last change: 10.10.2025 08:05
 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.