giulym Posted August 29, 2019 Share Posted August 29, 2019 Comment appeler le groupe d'attributs de la couleur $ group.group_type? J'ai besoin des couleurs du groupe [{$ id_attribute_group}], par exemple. groupe_1, dans la colonne de droite de la page du produit. Je veux faire quelque chose comme: {if $ group.group_type == 'color' && id_attribute_group == '1'} alors faites ceci ... mais cela ne fonctionne pas, il appelle seulement la première couleur du groupe (mais l'identifiant est correct!). Je dois faire la même chose pour la radio {elseif $group.group_type == 'color'} <ul id="group_{$id_attribute_group}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <li class="float-xs-left input-container"> <label> <input class="input-color" type="radio" data-product-attribute="{$id_attribute_group}" name="group[{$id_attribute_group}]" value="{$id_attribute}"{if $group_attribute.selected} checked="checked"{/if}> <span {if $group_attribute.html_color_code}class="color" style="background-color: {$group_attribute.html_color_code}" {/if} {if $group_attribute.texture}class="color texture" style="background-image: url({$group_attribute.texture})" {/if} ><span class="sr-only">{$group_attribute.name}</span></span> </label> <div class="colors-names">{$colors.$id_attribute.name}</div> </li> {/foreach} Merci si vous pouvez m'aider! Désolé pour mon français.. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now