From f797dc0eeb2edd59f5eb060bf519dbbd628dcd81 Mon Sep 17 00:00:00 2001 From: "storm.earth.fire" Date: Fri, 30 Oct 2015 15:19:08 +0100 Subject: [PATCH 1/2] Fixing scope issue with 'is_configurable' attribute setting' --- magmi/engines/magmi_productimportengine.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/magmi/engines/magmi_productimportengine.php b/magmi/engines/magmi_productimportengine.php index 00e33c37..6b679f17 100755 --- a/magmi/engines/magmi_productimportengine.php +++ b/magmi/engines/magmi_productimportengine.php @@ -944,9 +944,6 @@ public function createAttributes($pid, &$item, $attmap, $isnew, $itemids) //if is global then , global scope applies but if configurable, back to store view scope since //it's a select $scope=$attrdesc["is_global"]; - if ($attrdesc["is_configurable"]==1) { - $scope=0; - } $store_ids = $this->getItemStoreIds($item, $scope); From f5b47363d8b3059c5df26b58ffc5cd25fb4f2367 Mon Sep 17 00:00:00 2001 From: "storm.earth.fire" Date: Mon, 2 Nov 2015 14:38:28 +0100 Subject: [PATCH 2/2] Fixing scope issue with 'is_configurable' attribute setting - making separate case for price attribute --- magmi/engines/magmi_productimportengine.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/magmi/engines/magmi_productimportengine.php b/magmi/engines/magmi_productimportengine.php index 6b679f17..1c9d68b6 100755 --- a/magmi/engines/magmi_productimportengine.php +++ b/magmi/engines/magmi_productimportengine.php @@ -944,6 +944,9 @@ public function createAttributes($pid, &$item, $attmap, $isnew, $itemids) //if is global then , global scope applies but if configurable, back to store view scope since //it's a select $scope=$attrdesc["is_global"]; + if ($attrcode != "price" && $attrdesc["is_configurable"]==1) { + $scope=0; + } $store_ids = $this->getItemStoreIds($item, $scope);