-- HikaShop version -- : 2.4.0
-- Joomla version -- : 3.4.1
-- PHP version -- : 5.3.28
Hi,
i have 2 issue when i want to import procuts from a CSV file. It's not a backup but rather generated on the fly from various sources to create products int eh shop.
The first issue is if the product category name contain a colon multiple categories are created. Is it possible to prevent this to keep the colon in the category name?
Second issue:
I want to also import product images. The CSV column is named "images" and the values jsut contain the image name (lower-case, no spaces). Then i upload the images via FTP to "JOOMLA_ROOT/images/com_hikashop/upload" but the image is not displayed on the product page.
I debug into the view's code and figured out that
$img = $this->image->getThumbnail(@$image->file_path, array('width' => $width, 'height' => $height), $image_options);
if($img->success) { //<--- false
//display image code
}
is unsuccessful.
When i disable thumbnails in the Hikashop configuration the image is displayed.
So what do i have to do to get the thumbnails working? What may cause that $img>success fails?
Do i have to create the thumbnails in my case myself and also upload them?
thanks in advance.