Franque Posted January 18, 2015 Share Posted January 18, 2015 Bonjour à tous, Je suis en charge de la modification du tunnel de commande pour un client, et je souhaiter commencer par l'inversion de la position des boutons. En effet, comme sur la photo en pièce jointe, je souhaite juste mettre le bouton "Retour aux produits" à la place de "Suivant" et vis versa. Or lorsque je change la position dans le code ci dessous en inversant les deux parties, rien ne change, ou disons plutôt qu'un bug se produit et qu'on ne peut pas aboutir à la page suivante. Merci d'avance pour votre aide <p class="cart_navigation"> {if !$opc} <a href="{if $back}{$link->getPageLink('order', true, NULL, 'step=1&back={$back}')}{else}{$link->getPageLink('order', true, NULL, 'step=1')}{/if}" class="exclusive standard-checkout" title="{l s='Next'}">{l s='Next'} »</a> {if Configuration::get('PS_ALLOW_MULTISHIPPING')} <a href="{if $back}{$link->getPageLink('order', true, NULL, 'step=1&back={$back}')}{else}{$link->getPageLink('order', true, NULL, 'step=1')}{/if}&multi-shipping=1" class="multishipping-button multishipping-checkout exclusive" title="{l s='Next'}">{l s='Next'} »</a> {/if} {/if} {if !$opc} <a href="{if $back}{$link->getPageLink('order', true, NULL, 'step=1&back={$back}')|escape:'html':'UTF-8'}{else}{$link->getPageLink('order', true, NULL, 'step=1')|escape:'html':'UTF-8'}{/if}" class="button btn btn-default standard-checkout button-medium" title="{l s='Proceed to checkout'}"> <span>{l s='Proceed to checkout'}<i class="icon-chevron-right right"></i></span> </a> {/if} <a href="{if (isset($smarty.server.HTTP_REFERER) && strstr($smarty.server.HTTP_REFERER, 'order.php')) || isset($smarty.server.HTTP_REFERER) && strstr($smarty.server.HTTP_REFERER, 'order-opc') || !isset($smarty.server.HTTP_REFERER)}{$link->getPageLink('index')}{else}{$smarty.server.HTTP_REFERER|escape:'htmlall':'UTF-8'|secureReferrer}{/if}" class="button_large" title="{l s='Continue shopping'}">« {l s='Continue shopping'}</a> </p> Link to comment Share on other sites More sharing options...
loulou66 Posted January 18, 2015 Share Posted January 18, 2015 Coucou as-tu penser a vider le cache smarty et du navigateur apres des changement dans le tpl ? (j'ai pris le code du shopping-cart.tpl) <p class="cart_navigation clearfix"> <a href="{if (isset($smarty.server.HTTP_REFERER) && ($smarty.server.HTTP_REFERER == $link->getPageLink('order', true) || $smarty.server.HTTP_REFERER == $link->getPageLink('order-opc', true) || strstr($smarty.server.HTTP_REFERER, 'step='))) || !isset($smarty.server.HTTP_REFERER)}{$link->getPageLink('index')}{else}{$smarty.server.HTTP_REFERER|escape:'html':'UTF-8'|secureReferrer}{/if}" class="button-exclusive btn btn-default" title="{l s='Continue shopping'}"> <i class="icon-chevron-right right"></i>{l s='Continue shopping'} </a> {if !$opc} <a href="{if $back}{$link->getPageLink('order', true, NULL, 'step=1&back={$back}')|escape:'html':'UTF-8'}{else}{$link->getPageLink('order', true, NULL, 'step=1')|escape:'html':'UTF-8'}{/if}" class="button btn btn-default standard-checkout button-medium" title="{l s='Proceed to checkout'}"> <span>{l s='Proceed to checkout'}<i class="icon-chevron-left"></i></span> </a> {/if} </p> @++ Loulou66 Link to comment Share on other sites More sharing options...
Franque Posted January 18, 2015 Author Share Posted January 18, 2015 Merci pour cette réponse rapide, mais j'y avais pensé, et cela ne marche pas. En fait si je modifie le code de mon premier post en celui ci dessous pour essayer d'obtenir ce que je souhaite, et bien les deux boutons si on clic dessus, amène vers la page d'identification .. <p class="cart_navigation"> <a href="{if (isset($smarty.server.HTTP_REFERER) && strstr($smarty.server.HTTP_REFERER, 'order.php')) || isset($smarty.server.HTTP_REFERER) && strstr($smarty.server.HTTP_REFERER, 'order-opc') || !isset($smarty.server.HTTP_REFERER)}{$link->getPageLink('index')}{else}{$smarty.server.HTTP_REFERER|escape:'htmlall':'UTF-8'|secureReferrer}{/if}" class="button_large" title="{l s='Continue shopping'}">« {l s='Continue shopping'}</a> {if !$opc} <a href="{if $back}{$link->getPageLink('order', true, NULL, 'step=1&back={$back}')}{else}{$link->getPageLink('order', true, NULL, 'step=1')}{/if}" class="exclusive standard-checkout" title="{l s='Next'}">{l s='Next'} »</a> {if Configuration::get('PS_ALLOW_MULTISHIPPING')} <a href="{if $back}{$link->getPageLink('order', true, NULL, 'step=1&back={$back}')}{else}{$link->getPageLink('order', true, NULL, 'step=1')}{/if}&multi-shipping=1" class="multishipping-button multishipping-checkout exclusive" title="{l s='Next'}">{l s='Next'} »</a> {/if} {/if} {if !$opc} {/if} </p> Link to comment Share on other sites More sharing options...
Alexandre Carette Posted January 19, 2015 Share Posted January 19, 2015 (edited) hello, tu n'as pas la possibilité de faire ca en css ? Edited January 19, 2015 by Alexandre-KM (see edit history) Link to comment Share on other sites More sharing options...
Franque Posted January 19, 2015 Author Share Posted January 19, 2015 (edited) J'y ai pensé mais je vois pas comment cela pourrait marcher car il y'a derrière des liens etc .. J'ai essayer d'aller voir si dans le code css je pouvais modifier quelque chose, mais rien à faire cela ne change rien Edited January 19, 2015 by Franque (see edit history) 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