2
i manage to find the solution
in item.php somewhere in line 118 add this
$mainImage = $theitemObj->getMainImage();
// check to see if GD function exist
$theitem['item_image'] = $mainImage['image_path'];
if (!empty($mainImage['image_path']) && function_exists('imagecreatetruecolor')) {
$theitem['item_image'] = ARTIKEL_URL . '/thumb.php?src=' . $mainImage['image_path'] . '&w=100';
}
in publisher_item.html
use this to call the image
<{if $item.item_image != ''}> <a href="<{$item.itemurl}>" title="<{$item.title}>">
<img src="<{$item.item_image}>" alt="<{$item.title}>" align="left" width="100" />
a><{/if}>