WooCommerce: Import additional Variations using standard import tool
-
I’m using the standard WooCommerce importer (https://docs.woocommerce.com/document/product-csv-importer-exporter/).
Using a PHP script I’m composing a compatible CSV with data coming from another system. This file was successfully imported into WooCommerce. However, I face the following issue when trying to import additional variations.
My variable products have an attribute called
sizewhich is set to e.g.S,M,Lafter the first import. Let’s imagine the second import also introducesXS,XL. What WooCommerce does is it skips the variables products asanother product with the same SKU already existsand just imports the new variations. Sometimes, already existing variations (e.g.Magain) are also imported.All variations imported with the second CSV are set to
Some sizeinstead of their corresponding size. I figured out that this is caused by thevariable(parent) product’s attributes not being updated with the second import. After selecting theoverwriteoption in an import and just importSKUand thesizeattribute columns, it will delete all other attributes of the product and also every change that was done manually after the first import.Is there any option to import additional variations for already existing variable products without having to manually add the new
sizeattribute values for every variable product? In addition, is it possible to keep the manual changes, i.e. to not overwrite fields that weren’t changed?Thanks in advance.
The topic ‘WooCommerce: Import additional Variations using standard import tool’ is closed to new replies.