inokewm Posted January 7, 2014 Report Share Posted January 7, 2014 Как вывести наименование товаров понял, {foreach $order->purchases as $p} {$p->product_name} <br> {/foreach} Подскажите, как вывести фото товара? Quote Link to post Share on other sites
Виталий Анатольевич Posted January 8, 2014 Report Share Posted January 8, 2014 {$image = $purchase->product->images|first} {if $image} <a href="products/{$purchase->product->url}"><img src="{$image->filename|resize:50:50}" alt="{$product->name|escape}"></a> {/if} Quote Link to post Share on other sites
inokewm Posted January 8, 2014 Author Report Share Posted January 8, 2014 Это работает в order.tpl но не работает в orders.tpl Quote Link to post Share on other sites
Виталий Анатольевич Posted January 8, 2014 Report Share Posted January 8, 2014 это в админке? Quote Link to post Share on other sites
Ruslan Kopyl Posted January 8, 2014 Report Share Posted January 8, 2014 А что в ордерс выводить? а если в заказе 10 товаров, то 10 картинок выводить? Quote Link to post Share on other sites
inokewm Posted January 9, 2014 Author Report Share Posted January 9, 2014 А что в ордерс выводить? а если в заказе 10 товаров, то 10 картинок выводить?В ордерс. Если 10 заказов то 10 картинок) это в админке?Угу, в админке. Quote Link to post Share on other sites
Ruslan Kopyl Posted January 9, 2014 Report Share Posted January 9, 2014 В ордерс. Если 10 заказов то 10 картинок) Угу, в админке.вы наверное не совсем правильно поняли что я написал, в ордерс отображается список заказов, в одном заказе может быть несколько товаров у каждого из которых есть своя картинка Quote Link to post Share on other sites
inokewm Posted January 9, 2014 Author Report Share Posted January 9, 2014 вы наверное не совсем правильно поняли что я написал, в ордерс отображается список заказов, в одном заказе может быть несколько товаров у каждого из которых есть своя картинкаДа, если в одном заказе 10 товаров то все 10 картинок Quote Link to post Share on other sites
diaran Posted May 23, 2017 Report Share Posted May 23, 2017 Помогите плз с решением этой не простой задачи (добавить фото к товару в списке заказов) в файле simpla/design/html/orders.tpl<ul> {assign var=ol value=1} {foreach $order->purchases as $p} <li> {$ol++}. {$p->product_name} {$p->variant_name} - {$p->amount} шт. </li> {/foreach}</ul> 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.