diff --git a/Helper/Import/Product.php b/Helper/Import/Product.php
index daf5ad7..ddc82ff 100644
--- a/Helper/Import/Product.php
+++ b/Helper/Import/Product.php
@@ -18,10 +18,6 @@ protected function getColumnsFromResult(array $result, array $keys = []): array
return $mappedResult;
}
- $adminChannel = $this->scopeConfig->getValue('akeneo_connector/akeneo_api/admin_channel');
-
- $defaultLanguage = $this->scopeConfig->getValue('akeneo_connector/justbetter/defaultlanguage');
-
$requiredAttributes = $this->getRequiredAttributes();
foreach ($requiredAttributes as $requiredAttribute) {
@@ -34,10 +30,6 @@ protected function getColumnsFromResult(array $result, array $keys = []): array
continue;
}
- if (!array_key_exists($requiredAttribute.'-'.$defaultLanguage.'-'.$adminChannel, $mappedResult) && $defaultLanguage) {
- $mappedResult[$requiredAttribute.'-'.$defaultLanguage.'-'.$adminChannel] = $this->getFirstValue($result['values'][$requiredAttribute]);
- }
-
$mappedResult[$requiredAttribute] = $this->getFirstValue($result['values'][$requiredAttribute]);
}
diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml
index 05efd4a..4b58a3a 100644
--- a/etc/adminhtml/system.xml
+++ b/etc/adminhtml/system.xml
@@ -129,15 +129,6 @@
Magento\Config\Model\Config\Source\YesnoSet the value on the default store for required attributes that are scopable or localizable. (Default no)
-
-
- If a value of the admin channel is missing, then this setting can be used to map a certain value as your definitive fallback value for a required attribute for example 'nl_NL'
-
-
- 1
-
-