Reputation: 1
I have started using magmi to import products, using the option create new items & update existing ones
, however, when a new product is created, the _attribute_set
seems to be ignored.
I have defined an attribute set in Magento called Books
, which includes attributes such as ISBN, author.
Here is a sample from the CSV file (only the first few columns):
Header:
sku,_store,_attribute_set,_type,categories,_product_websites,name
Product Line:
ZZ001,,Books,simple,MyCategory/MySubCategory,base,Book Title
On the above example, ZZ001 is created, but with an attribute set of Default
Store is blank - is this a problem?
Someone else asked a question about this - but I didn't see a satisfactory answer.
Upvotes: 0
Views: 1813
Reputation: 10772
Please double-check and make sure your column names are correct.
_store
should be store
_attribute_set
should be attribute_set
_type
should be type
_product_websites
should be websites
Also for attribute sets, you must make sure that the attribute set is already created before attempting to import products under it. Magmi does not automatically create attribute sets.
Upvotes: 1