|
Hi folks,
I’ve got a problem with saving a product into different stores.
We use this stores as translations (en and sk). If I do:
$product->setName(’Some English name’);
$product->setDescription(’Some English description’);
$product->setStoreId(1);
$product->save();
$product->setName(’Some Slovak name’);
$product->setDescription(’Some Slovak description’);
$product->setStoreId(2);
$product->save();
It says, that I’ve got a duplicate ID(sku). :((
Can you help me please? Thanks a lot in advance.
|