kdgroup Posted January 14, 2013 Report Share Posted January 14, 2013 Добрый день!У меня есть свойство "Оптовая цена". Как скрыть это свойство от пользователей? Чтобы видно было только в админке? Quote Link to post Share on other sites
JustDavali Posted January 14, 2013 Report Share Posted January 14, 2013 {if $product->features} <ul class="features"> {foreach $product->features as $f}{if $f->name != 'Оптовая цена'} <li> <label>{$f->name}</label> <span>{$f->value}</span> </li>{/if} {/foreach} </ul> {/if}насчет != не уверен, но суть в том что перед выводом названия характеристики и его данных мы проверяем что бы название не совпадало с "Оптовая цена"а вообще можно просто доп.поле сделать в базе и выводить его только в админке, там не сложно всего 3-4 файла поправить по аналогии с теми полями что уже есть типа "meta_description" Quote Link to post Share on other sites
kdgroup Posted January 16, 2013 Author Report Share Posted January 16, 2013 JustDavali, Спасибо! Quote Link to post Share on other sites
Danya Posted August 20, 2013 Report Share Posted August 20, 2013 Скрыть свойство товара по ID:{if $product->features} <ul class="features"> {foreach $product->features as $f}{if $f->feature_id != '777'} <li> <label>{$f->name}</label> <span>{$f->value}</span> </li>{/if} {/foreach} </ul> {/if} Quote Link to post Share on other sites
Axotn1k Posted June 20, 2016 Report Share Posted June 20, 2016 Куда вставлять ? Quote Link to post Share on other sites
Kors Posted June 20, 2016 Report Share Posted June 20, 2016 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.