Hi,
1. change the line:
$query = 'SELECT b.*,a.* FROM '.acymailing_table('hikashop_product',false).' as a LEFT JOIN '.acymailing_table('hikashop_file',false).' as b ON a.product_id=b.file_ref_id AND file_type=\'product\' WHERE a.product_id = '.$tag->id.' LIMIT 1';
to:
$query = 'SELECT b.*,a.* FROM '.acymailing_table('hikashop_product',false).' as a LEFT JOIN '.acymailing_table('hikashop_file',false).' as b ON a.product_id=b.file_ref_id AND file_type=\'product\' WHERE a.product_id = '.$tag->id.' ORDER BY b.file_ordering ASC, b.file_id ASC LIMIT 1';
in the file plugins/acymailing/hikashop/hikashop.php and that should fix the problem.
2. Your code is not correct. It should be:
$image = hikashop_get('helper.image');
echo $image->display($product->file_path,false,$product->product_name, '' , '' ,100,200);
where 100 is the width and 200 the height (that's just an example).