22 lines
872 B
Smarty
22 lines
872 B
Smarty
{*
|
|
* PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
|
|
*
|
|
* @author VEKIA https://www.prestashop.com/forums/user/132608-vekia/
|
|
* @copyright 2010-2017 VEKIA
|
|
* @license This program is not free software and you can't resell and redistribute it
|
|
*
|
|
* CONTACT WITH DEVELOPER
|
|
* support@mypresta.eu
|
|
*}
|
|
|
|
{if Configuration::get('cmsproductspro_hide')!=1}
|
|
{if $feedtype == 'noPictures'}
|
|
<p class="alert alert-warning">{l s='No pictures available in this feed.' mod='cmsproductspro'}</p>
|
|
{elseif $feedtype != 'error'}
|
|
{foreach $pictures AS $pic}
|
|
<img src="{$link->getImageLink($productGallery->link_rewrite, $pic, $image_type)}" class="cmsproductspro_thumb"/>
|
|
{/foreach}
|
|
{else}
|
|
<p class="alert alert-warning">{l s='No pictures available in this feed.' mod='cmsproductspro'}</p>
|
|
{/if}
|
|
{/if} |