Magento 1.9 – Automatically Uncheck Use Default Value When Importing Products

attributesimportexportmagento-1.9productproduct-attribute

I am running a Magento website having 2 Stores

a) store1

b) store2

I am almost using same data for both the stores except Store2 products "Meta titles" are different. So when I update Store2 Products meta_title using default Magento Import/Export functionality, store2 product updated successfully but all the other values of the updated product Use Default Value unchecked.

I searched a lot on google before posting this question but didn't get the solution to the problem.

My Queries :

1) Is Use Default Value uncheck of all values of the store is default behavior of Magento?

2) Is there any solution to fix this issue?

Best Answer

With the default ImportExport CSV format you can set store specific values for single attributes if and only if you also import the default values.

Example:

sku, _store, name          , meta_title
xxx,       , "Default Name", "Default Title"
   , store2,               , "Store 2 Title"

Here the meta_title attribute will be saved with a specific value for store2, while the name attribute will be saved as "Use default" in store2. Also the default values will be overwritten for all given columns.

Related Topic