Check if a category exists Shopware 6
Advertisements Check if a category existsyour text I have such code $categoryService = $this->container->get(‘category.repository’); $newCategory = [ ‘name’ => ‘Profi-Shop’, ‘parentId’ => null, ‘customFields’ => [ ], ]; $categoryService->create([$newCategory], $context->getContext()); It is executed every time. How to execute it only if there is no such category >Solution : You need to check if your category… Read More Check if a category exists Shopware 6