#4559

Thang Nguyen
Moderator

Dear,

I just fixed it as follow


<table class="table-data-sheet">
	{foreach from=$features item=feature}
	{if !isset($feature.id_product)}
	<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}
</table>

Please check again.

Thanks!