Allexb10 Posted December 12, 2013 Share Posted December 12, 2013 Olá, Preciso que na página do carrinho, ao clicar nas setas para diminuir ou aumentar a quantidade de cada produto, recarregar a página para aplicar outras funções. Já tentei colocar no shopping-cart.tpl no seguinte código: <a rel="nofollow" class="cart_quantity_up" id="cart_quantity_up_{$product.id_product}_{$product.id_product_attribute}_{$id_customization}_{$product.id_address_delivery|intval}" href="{$link->getPageLink('cart', true, NULL, "add=1&id_product={$product.id_product|intval}&ipa={$product.id_product_attribute|intval}&id_address_delivery={$product.id_address_delivery}&id_customization={$id_customization}&token={$token_cart}")}" title="{l s='Add'}"><img src="{$img_dir}icon/quantity_up.gif" alt="{l s='Add'}" width="14" height="9" /></a> depois do href um onclick="" com várias funcoes mas não funciona. já tentei também no ajax-cart.js $('.cart_quantity_up').unbind('click').click(function(){ location.reload(); return false; }); $('.cart_quantity_down').unbind('click').click(function(){ location.reload(); return false; }); se eu deixo o return false, recarrega mas não altera a quantidade dos produtos. Se eu colocar return true, retorna um erro: Alguma sugestão de como dar um refresh na página ao clicar nestes botões? Link to comment Share on other sites More sharing options...
Daniel - PrestaBR Posted December 12, 2013 Share Posted December 12, 2013 Para recarregar toda a página, tente inserir no fim da função javascript (ajax-cart.js): window.location.reload(); Boa sorte. Link to comment Share on other sites More sharing options...
Allexb10 Posted December 12, 2013 Author Share Posted December 12, 2013 Já tentei, mas fica dando reload sem parar. Teria talvez alguma condição para colocar esta função? 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