<{assign var="profile" value=$product->getProfile()}>
<{assign var="attr" value=$profile->getAttributeList()}>
<{section name="a" loop=$attr}>
<{assign var="value" value=$product->getAttributeValue($attr[a]->getAttributeId())}>
<{if $value}>
<{assign var="name" value=$attr[a]->getName()}>
<{assign var="tag" value=$attr[a]->getTag()}>
<{if $tag == "weight"}>
<{capture name="prepend"}><{t}>kg<{/t}><{/capture}>
<{elseif $tag == "volume"}>
<{capture name="prepend"}><{t}>liter<{/t}><{/capture}>
<{else}>
<{capture name="prepend"}><{/capture}>
<{/if}>
<{if $value != 'N/A'}>
<{if !in_array( $tag, $hidden_product_attributes)}>
| <{$name|escape}> |
<{$value}> <{$smarty.capture.prepend|escape}> |
<{/if}>
<{/if}>
<{/if}>
<{/section}>
<{if $product->getOwnId() && !in_array( 'ownid', $hidden_product_attributes)}>
| <{t}>SKU<{/t}> |
<{$product->getOwnId()}> |
<{/if}>
<{if $product->getGtin() && !in_array( 'gtin', $hidden_product_attributes)}>
| <{t}>GTIN<{/t}> |
<{$product->getGtin()}> |
<{/if}>
<{if $product->getMpn() && !in_array( 'mpn', $hidden_product_attributes)}>
| <{t}>MPN<{/t}> |
<{$product->getMpn()}> |
<{/if}>
<{if $product->getTariffCode() && !in_array( 'tariff_code', $hidden_product_attributes)}>
| <{t}>Tariff Code<{/t}> |
<{$product->getTariffCode()}> |
<{/if}>
<{if $product->getCountryOfOrigin() && !in_array( 'country_of_origin', $hidden_product_attributes)}>
| <{t}>Country of origin<{/t}> |
<{$product->getCountryOfOrigin()}> |
<{/if}>
<{if $product->getPackage() && !in_array( 'package', $hidden_product_attributes)}>
| <{t}>Package<{/t}> |
<{$product->getPackage()}> |
<{/if}>
<{if $product->getSupplierName() && !in_array( 'supplier', $hidden_product_attributes)}>
| <{t}>Supplier<{/t}> |
<{$product->getSupplierName()}> |
<{/if}>
<{if $product->getShippingWeight() && !in_array( 'weight', $hidden_product_attributes)}>
| <{t}>Weight<{/t}> |
<{$product->getShippingWeight()}> |
<{/if}>