FireGento_FastSimpleImport2 icon indicating copy to clipboard operation
FireGento_FastSimpleImport2 copied to clipboard

When importing product category with pipe, create wrong category name

Open smirkos opened this issue 5 years ago • 1 comments

Related to issue #13

When importing product category with pipe "|", create wrong category name.

My fields categories is "CATALOGO/Felpe/Basic|MARCHI/GILDAN/Felpe/Basic", and create this categories:

  • CATALOGO
    • Felpe
      • Basic|MARCHI
        • GILDAN - Felpe Why?

But if concat the categories path with comma "," instead of pipe "|", work perfectly!! Why?

smirkos avatar Jun 14 '19 15:06 smirkos

I fix this issue in this mode:

$importerModel = $this->objectManager->create('FireGento\FastSimpleImport\Model\Importer');
$importerModel->setMultipleValueSeparator('|');

smirkos avatar Jul 02 '19 07:07 smirkos