Не знал в какую тему написать, но всеже решил всеже сюда, вопрос актуальный.
значит есть файл
default_images.php
PHP:
<?php
defined('_JEXEC') or die('Restricted access');
// Product Main Image
if (!empty($this->product->images[0])) {
?>
<div class="main-image">
<?php echo $this->product->images[0]->displayMediaFull('class="medium-image" id="medium-image"', false, "class='modal'", true); ?>
</div>
<?php } // Product Main Image END ?>
<?php
// Showing The Additional Images
// if(!empty($this->product->images) && count($this->product->images)>1) {
if (!empty($this->product->images) and count ($this->product->images)>1) {
?>
<div class="additional-images">
<?php
// List all Images
if (count($this->product->images) > 0) {
foreach ($this->product->images as $image) {
echo '<div class="floatleft">' . $image->displayMediaThumb('class="product-image"', true, 'class="modal"', true, true) . '</div>'; //'class="modal"'
}
}
?>
<div class="clear"></div>
</div>
<?php
} // Showing The Additional Images END ?>
Надо добавить код, чтобы рядом с картинками отображалось видео. если оно естественно есть для данного товара.
А вот видео я (во вкладках) вывожу с помощью кода
PHP:
<?php
if (!empty($this->product->customfieldsSorted['Video'])) { ?>
<div title="sj_module_2load:180" class="tab-content" style="display: none;">
<?php foreach ($this->product->customfieldsSorted['Video'] as $field){?>
<?php $this->position='Video';
echo $this->loadTemplate('customfields');?>
<?php } ?>
</div>
<?php } ?>
В итоге должно получиться как показано на картинке
Посмотреть вложение 45833
Кто знает, прошу помочь... Заранее спасибо.