Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<div class="additional-mediafiles">
<?php
// List all mediafiles
if (count($this->product->images) > 0) {
foreach ($this->product->images as $image) {
if (($image->file_extension != 'jpg') && ($image->file_extension != 'gif') && ($image->file_extension != 'png'))
{ ?>
<p class="add-m_file doc bg5"><span class="icon"></span>
<a target="_blank" href="<?php echo $image->file_url ?>"><?php echo $image->file_title ?></a>
</p>
<?php
}
}
}
?>