{foreach from=$product.attributes key="attributeId" item="attribute"} <div class="product-line-info"> {var_dump($attributeId, $attribute)} {if $attributeId == 235 or $attribute.attribute_group_id == 34} <span class="label">{$attribute.name} :</span> <span class="value">{$attribute.value} {l s='+ valeur du if'}</span> {else} <span class="label">{$attribute.name} :</span> <span class="value">{$attribute.value} {l s='+ valeur du else'}</span> {/if} </div> {/foreach}
Quelques modifications mineures ont été apportées au code. Vous pouvez l'essayer pour voir s'il fonctionne. Si ce n'est pas le cas, vous aurez besoin de l'aide d'un Pro 😃
Ou ca ?.
{foreach from=$product.attributes key="attributeId" item="attribute"} <div class="product-line-info"> {var_dump($attributeId, $attribute)} {if $attributeId == 235} <span class="label">{$attribute.name} :</span> <span class="value">{$attribute.value} {l s='+ valeur du if'}</span> {elseif $attribute.attribute_group_id == 34} <span class="label">{$attribute.name} :</span> <span class="value">{$attribute.value} {l s='+ valeur du else if'}</span> {else} <span class="label">{$attribute.name} :</span> <span class="value">{$attribute.value} {l s='+ valeur du else'}</span> {/if} </div> {/foreach}