ar41 Posted May 11, 2014 Report Share Posted May 11, 2014 Помогите сделать, что бы "Связанные товары" добавлялись автоматически из той же группы, что и товар Quote Link to post Share on other sites
Kosjak76 Posted May 11, 2014 Report Share Posted May 11, 2014 http://www.simplashop.com/article/universalnyj-vidzhet-get_products Quote Link to post Share on other sites
ar41 Posted May 11, 2014 Author Report Share Posted May 11, 2014 http://www.simplashop.com/article/universalnyj-vidzhet-get_productsОгромнейшее спасибо! Quote Link to post Share on other sites
ar41 Posted May 11, 2014 Author Report Share Posted May 11, 2014 http://www.simplashop.com/article/universalnyj-vidzhet-get_productsА куда вставлять Задача 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*} Quote Link to post Share on other sites
Kosjak76 Posted May 11, 2014 Report Share Posted May 11, 2014 products.tpl Точнее вам никто не скажет Конкретный код зависит от вашей верстки.Посмотрите код main.tpl && product.tpl, вывод рекомендуемых и связанных. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.