Установил плагин multiupload В Theme.php добавил Код: function vmlistAdditionalImages( $product_sku, $title='' ) { global $sess; $html = ''; $url = 'components/com_virtuemart/shop_image/product/'.$product_sku; if (is_dir($url)) { if ($dir = opendir($url)) { while (false !== ($file = readdir($dir))){ if ($file != '.' && $file != '..') { $fullpath = $url.'/'.$file; $html .= '<a href="'.$fullpath.'" rel="lightbox[group]" title="'.$title.'"><img src="'.$fullpath.'" height="92" width="61"></a>'; } } closedir($dir); } } return $html; } Во Flypage Код: В нужном месте <div style="width: 193px; height: 92px; overflow: hidden; margin-left: 1px; margin-top: 3px;"> <?php echo $this->vmlistAdditionalImages( $product_sku ) ?> Загружаю картинки через мультиаплод А на самой странице товара ничего нет Помогите