Variations Importer deletes images from the /import folder
Variations Importer deletes images from the /import folder
Every time I use the tool to import product variations, it deletes the images from /product_images/import folder. The problem with this is that, a lot of my variations use the same image. For example, all my red shirts will use the same red t-shirt image. It doesn't matter if they're small, medium, or large. But as soon as the importer, imports the first image, it will delete the image, and consequently, the remaining variations don't get an image included with them. Does anyone know what code I have to modify to prevent this from happening?
Re: Variations Importer deletes images from the /import folder
It took forever, but I finally figured it out. If anyone else needs this too, here is what u gotta do -
Open: \admin\includes\importer\product_variations.php
Changed line 228 to this,
Open: \admin\includes\importer\product_variations.php
Changed line 228 to this,
Code: Select all
$variationImage = ISC_PRODUCT_IMAGE::importImage($importImageFilePath, basename($importImageFilePath), false, false, false, false);
-
- Confirmed
- Posts: 413
- Joined: Sun Aug 09, 2009 1:23 pm
Re: Variations Importer deletes images from the /import folder
Wow! How did you manage to find THAT? ~ Congratulations on fixing it!
ISC 4.0.7
"... and let's be honest that whole "by design" thing is getting old too."
"... and let's be honest that whole "by design" thing is getting old too."
Re: Variations Importer deletes images from the /import folder
With great great difficulty, and lots of trial & errors 
