Есть коллекция - "Спальня" у неё есть тумбочка, кровать, комод и т.д. У коллекции "Спальня" есть галерея фото, вот эту галерею мне нужно показывать и у тумбочки и у кровати и у комода.
Откройте файл
/controllers/front/ProductController.php
до:
Код:
if (count($product_images))
$this->context->smarty->assign('images', $product_images);
добавьте:
Код:
if (Pack::isPacked((int)$this->product->id))
{
$products = Pack::getPacksTable($this->product->id, $this->context->language->id);
foreach($products as $product)
{
$product = new Product((int)$product['id_product']);
if (Validate::isLoadedObject($product))
$product_images = array_merge($product_images, $product->getImages((int)$this->context->cookie->id_lang));
}
if (!Product::getCover($this->product->id))
$cover = Product::getCover($product->id);
if ($cover)
$this->context->smarty->assign(array('cover' => $cover, 'have_image' => true));
}