AvS_FastSimpleImport icon indicating copy to clipboard operation
AvS_FastSimpleImport copied to clipboard

One sku in multiple products.

Open Triyugi opened this issue 8 years ago • 0 comments

How can I assign one product into multiple categories?

$data = array();
foreach($data_array as $key=>$value) {
	$data[] = array(
		'_root' => 'Default Category',
		'_category' => $value,
		'_sku' => $key,
		'position' => 1
	);
}

But it only imports one relation.

Triyugi avatar Oct 12 '17 13:10 Triyugi