Guillawm Posted January 14, 2013 Share Posted January 14, 2013 (edited) Bonjour, J'ai un souci avec les déclinaisons, j'ai créé un attribut couleur, avec des valeurs (noir, bleu, gris, rouge, etc.) Lorsque je suis sur mon produit j'ai bien la palette qui apparait et je peux séléctionner la couleur, le champ hidden se remplit bien, mais lorsque je clique sur ajouter au panier, c'est la couleur par défaut qui s'insert... Pourtant rien touché à cette partie du code : <ul id="color_to_pick_list" class="clearfix"> {assign var="default_colorpicker" value=""} {foreach from=$group.attributes key=id_attribute item=group_attribute} <li{if $group.default == $id_attribute} class="selected"{/if}> <a id="color_{$id_attribute|intval}" class="color_pick{if ($group.default == $id_attribute)} selected{/if}" style="background: {$colors.$id_attribute.value};" title="{$colors.$id_attribute.name}" onclick="colorPickerClick(this);getProductAttribute();{if $colors|@count > 0}$('#wrapResetImages').show('slow');{/if}"> {if file_exists($col_img_dir|cat:$id_attribute|cat:'.jpg')} <img src="{$img_col_dir}{$id_attribute}.jpg" alt="{$colors.$id_attribute.name}" width="20" height="20" /><br> {/if} </a> </li> {if ($group.default == $id_attribute)} {$default_colorpicker = $id_attribute} {/if} {/foreach} </ul> Débutant dans Prestashop, je ne vois pas trop d'où ca pourrait venir... il est vrai que j'utilise d'autre script jQuery perso dans la page mais je n'ai pas d'erreur jQuery qui pourrait expliquer un conflit eventuel... Merci pour votre aide ! Edited January 15, 2013 by Guillawm (see edit history) Link to comment Share on other sites More sharing options...
Guillawm Posted January 15, 2013 Author Share Posted January 15, 2013 en fait j'avais des ID en double sur la page, ça devait mettre le bordel. 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