Jump to content

Need hidden features


Recommended Posts

you can achieve it with template modification only, with smarty modifier |strstr

 

 

{foreach from=$features item=feature}
{if $feature.name|strstr:"sys_"==false}
<tr class="{cycle values="odd,even"}">
{if isset($feature.value)}
<td>{$feature.name|escape:'html':'UTF-8'}</td>
<td>{$feature.value|escape:'html':'UTF-8'}</td>
{/if}
</tr>
{/if}
{/foreach}
Link to comment
Share on other sites

×
×
  • Create New...