Hi,
I'm not sure that HikaShop/HikaMarket will handle correctly symlinks.
If you really want all images in the same folder, I see two kind of solutions :
- Move all images (and thumbnails) in the "upload" folder and then update the "file" database table to replace "vendor1/" by "" (using a mass-action for example).
- Edit the HikaMarket "product" controller to replace the block
if($vendor_id > 1)
$options['sub_folder'] = 'vendor'.$vendor_id.DS;
By
$options['sub_folder'] = 'vendor'.$vendor_id.DS;
In order to re-set the "vendor1" folder for new uploads.
Regards,