Jump to content

Recommended Posts

А куда вставлять 

Задача 1: вывести максимум 5 новинки того же бренда, что и указанный в карточке товара

{get_products var=brand_products brand_id=$product->brand_id sort='created' limit=5}
{if $brand_products}
{foreach $brand_products as $p}
//выводим товар в цикле
{/foreach}
{/if}
Поскольку в SimplaCMS данные товара указаны в объекте $product, то мы и передаем его значение в наш виджет.

Задача 2: вывести 3 товара со скидкой, которые есть в наличии

{get_products var=cat_products category_id=$category->id discounted=1 in_stock=1 limit=3}
{if $cat_products}
{foreach $cat_products as $p}
//выводим товар в цикле
{/foreach}
{/if}
Задача 3: вывести на главной по 4 рекомендуемых товара каждой "верхней" категории

{foreach $categories as $c}
{if $c->visible}{get_products var=cat_products category_id=$c->id featured=1 limit=4}
{if $cat_products}
<h3>{$c->name}</h3>
{foreach $cat_products as $p}
//выводим товар в цикле
{/foreach}{*foreach $cat_products as $p*}
{/if}{*if $cat_products*}
{/if}{*if $c->visible*}
{/foreach}{*foreach $categories as $c*}
Link to post
Share on other sites

products.tpl Точнее вам никто не скажет :)

Конкретный код зависит от вашей верстки.

Посмотрите код main.tpl && product.tpl, вывод рекомендуемых и связанных.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...