Category image deletes magento2 after initial upload and category save

March 15, 2024 0 Comments

In the beforeSave method in file

MagentoCatalogModelCategoryAttributeBackendImage

REPLACE

$imageName = $this->checkUniqueImageName($imageName);

WITH

if(array_key_exists(‘tmp_name’, $value[0])){
$imageName = $this->checkUniqueImageName($imageName);
}

To Top