ach34 Posted February 28, 2019 Share Posted February 28, 2019 Bonjour, J'ai un problème avec mes urls. J'ai passé en réécriture simplifié des urls mais dans mes pages produits j'avais une selection des couleurs avec un passage de paramètre. Mais ça ne marche plus, la page est renvoyé en 404. Voici l'url généré quand je clic sur une couleur : https://....../peaux-de-betes/9-elitis-anguille-big-croco-galuchat-big-croco.html&ref=VP%20423%2008#/117-couleur-dore1 Lorsque je rajoute un "?" dans l'URL ça marche https://....../peaux-de-betes/9-elitis-anguille-big-croco-galuchat-big-croco.html?&ref=VP%20423%2008#/117-couleur-dore1 Mais quand je l'ajoute dans le code il est supprimé. Je sais pas si c'est mon htacess ou autre chose qui marche pas Merci pour votre aide voici mon code <ul id="color_to_pick_list" class="clearfix"> {assign var="default_colorpicker" value=""} {assign var="REF" value=""} {assign var="IDImg" value=""} {foreach from=$group.attributes key=id_attribute item=group_attribute} {assign var='img_color_exists' value=file_exists($col_img_dir|cat:$id_attribute|cat:'.jpg')} {foreach from=$combinations key=k item=v} {if ($v.attributes[0] == $id_attribute)} <span></span> {$REF = $v.reference} {$IDImg = $v.id_image} {/if} {/foreach} <li{if $group.default == $id_attribute} class="selected"{/if}> <a href="{$link->getProductLink($product)|escape:'html':'UTF-8'}?" id="color_{$id_attribute|intval}" name="{$colors.$id_attribute.name|escape:'html':'UTF-8'}" class="color_pick{if ($group.default == $id_attribute)} selected{/if}"{if !$img_color_exists && isset($colors.$id_attribute.value) && $colors.$id_attribute.value} style="background:{$colors.$id_attribute.value|escape:'html':'UTF-8'};"{/if} title="{$colors.$id_attribute.name|escape:'html':'UTF-8'} - {$REF}"> <img class="img-responsive" id="thumb_{$k}" src="{$link->getImageLink($product->link_rewrite, $IDImg, 'small_default')|escape:'html':'UTF-8'}" alt="{$product->name|escape:'html':'UTF-8'} - {$product->manufacturer_name|escape:'htmlall':'UTF-8'} - {$REF}" title="{$product->name|escape:'html':'UTF-8'} - {$product->manufacturer_name|escape:'htmlall':'UTF-8'} - {$REF}" /> <span>{$colors.$id_attribute.name|escape:'html':'UTF-8'} - {$REF}</span> </a> </li> {if ($group.default == $id_attribute)} {$default_colorpicker = $id_attribute} {/if} {/foreach} </ul> Link to comment Share on other sites More sharing options...
ach34 Posted February 28, 2019 Author Share Posted February 28, 2019 j'ai trouvé ma solution 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