Jump to content

Отображение 2-х товаров в 1 строке


Recommended Posts

Уважаемые форумчане! Прошу помочь мне с следующим вопросом - как вывести 2 товара в 1 строке в Presto? Шаблон товара разобрал (product-list.tpl) но ничего там того, что отвечает за вывод 2-х товаров в строке не нашёл, привожу его код :

>{if isset($products)}
   <!-- Products list -->
</pre>
<ul>
   {foreach from=$products item=product name=products key=key}

            
{if ($product.allow_oosp OR $product.quantity > 0)}{l s='Available' mod='filtersearch'}{else}{l s='Out of stock' mod='filtersearch'}{/if}  
                


{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}



               {if $product.on_sale}
{l s='On sale!' mod='filtersearch'}
{l s='Price lowered!' mod='filtersearch'}
               {/if}
               {if !$priceDisplay || $priceDisplay == 2}

{convertPrice price=$product.price}
                       {if $priceDisplay == 2} {l s='+Tx' mod='filtersearch'}{/if}

               {/if}
               {if ($product.allow_oosp OR $product.quantity > 0) && $product.customizable != 2}
{l s='Add to cart' mod='filtersearch'}
               {else}
{l s='Add to cart' mod='filtersearch'}
               {/if}
{l s='View' mod='filtersearch'}




   {/foreach}
                                                           </ul>
<br>   <!-- /Products list --><br


Я решил, что дело в шаблоне, не беда, сверстал новый шаблон отображения товаров через

></pre>
<table width="300" border="0" cellpadding="0" cellspacing="0">    {if ($product.allow_oosp OR $product.quantity > 0)}{l s='Available' mod='filtersearch'}{else}{l s='Out of stock' mod='filtersearch'}{/if}

{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}                     {if $product.new == 1}НОВЫЙ!{/if}  
getImageLink($product.link_rewrite, $product.id_image, 'home')}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" />{if $product.on_sale}
{l s='On sale!' mod='filtersearch'}
               {elseif ($product.reduction_price != 0 || $product.reduction_percent != 0) && ($product.reduction_from == $product.reduction_to OR ($smarty.now|date_format:'%Y-%m-%d' <= $product.reduction_to && $smarty.now|date_format:'%Y-%m-%d' >= $product.reduction_from))}
{l s='Price lowered!' mod='filtersearch'}
               {/if}
               {if !$priceDisplay || $priceDisplay == 2}

{convertPrice price=$product.price}
                       {if $priceDisplay == 2} {l s='+Tx' mod='filtersearch'}{/if}                    
               {/if}

{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}
{if ($product.allow_oosp OR $product.quantity > 0) && $product.customizable != 2}</t


И т.д. Результат равен 0)))) Что посоветуете?
P.S. тот код, что привёл чуть-чуть порезал, но структура такая

Link to comment
Share on other sites

×
×
  • Create New...