Jump to content

Recommended Posts

{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"
Link to post
Share on other sites
  • 7 months later...
Скрыть свойство товара по 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}

 

 

Link to post
Share on other sites
  • 2 years later...

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...