D
D
Denis.2017-11-15 13:11:45
Joomla
Denis., 2017-11-15 13:11:45

How to add Media preview to the product page in k2store?

There is an online store in which you need to display Media preview on the product page. Now the page displays Item image preview
with this code

<span class="itemImage">
      	<a class="modal" rel="{handler: 'image'}" href="<?php echo $this->item->imageXLarge; ?>" title="<?php echo JText::_('K2_CLICK_TO_PREVIEW_IMAGE'); ?>">
      		<img src="<?php echo $this->item->image; ?>" 
alt="<?php if(!empty($this->item->image_caption)) 
echo K2HelperUtilities::cleanHtml($this->item->image_caption); 
else echo K2HelperUtilities::cleanHtml($this->item->title); ?>
" style="width:<?php echo $this->item->imageWidth; ?>px;height:auto;" />
      	</a>
      </span>

what needs to be changed to display Media preview

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis., 2017-11-15
@denia_85

Found the solution myself
<?php if($this->item->videoType=='embedded'): ?>
<?php echo $this->item->video; ?>
<?php else: ?>
<?php echo $this->item->video; ?>
<?php endif; ?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question